From 6436a68f8b5e82b746ea4b787ca0ac05f05b5e61 Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Mon, 11 Jul 2011 13:57:14 +1000 Subject: [PATCH] Add the prototype and an empty definition for show_help() --- src/help.c | 13 +++++++++++-- src/help.h | 7 +++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/help.c b/src/help.c index cd83011..cb426c6 100644 --- a/src/help.c +++ b/src/help.c @@ -28,5 +28,14 @@ */ -#include "system.h" -#include "help.h" +#include "trader.h" + + +/************************************************************************ +* Help text function definitions * +************************************************************************/ + +void show_help (void) +{ + // @@@ To be written +} diff --git a/src/help.h b/src/help.h index 5836a5c..61f6344 100644 --- a/src/help.h +++ b/src/help.h @@ -32,4 +32,11 @@ #define included_HELP_H 1 +/************************************************************************ +* Help text function declarations * +************************************************************************/ + +extern void show_help (void); + + #endif /* included_HELP_H */