1
0
mirror of https://git.zap.org.au/git/trader.git synced 2025-02-02 15:08:13 -05:00

Add the prototype and an empty definition for show_help()

This commit is contained in:
John Zaitseff 2011-07-11 13:57:14 +10:00
parent 3ff949efc0
commit 6436a68f8b
2 changed files with 18 additions and 2 deletions

View File

@ -28,5 +28,14 @@
*/
#include "system.h"
#include "help.h"
#include "trader.h"
/************************************************************************
* Help text function definitions *
************************************************************************/
void show_help (void)
{
// @@@ To be written
}

View File

@ -32,4 +32,11 @@
#define included_HELP_H 1
/************************************************************************
* Help text function declarations *
************************************************************************/
extern void show_help (void);
#endif /* included_HELP_H */