move errhash defs. Add modules to Makefiles

This commit is contained in:
Marty Kraimer
1997-04-30 19:11:22 +00:00
parent 85a2ef6e4d
commit 42adbd20c8
6 changed files with 16 additions and 13 deletions

View File

@@ -86,6 +86,12 @@ extern SYMTAB_ID statSymTbl;
#endif
#ifdef __STDC__
static unsigned short errhash(long errNum);
#else /*__STDC__*/
static unsigned short errhash();
#endif /*__STDC__*/
#ifdef vxWorks
#define MYERRNO (errnoGet()&0xffff)

View File

@@ -21,10 +21,4 @@ typedef struct /* ERRSYMTAB - symbol table */
typedef ERRSYMTAB *ERRSYMTAB_ID;
#ifdef __STDC__
static unsigned short errhash(long errNum);
#else /*__STDC__*/
static unsigned short errhash();
#endif /*__STDC__*/
#endif /* INCerrSymTblh */