FDECL, NDECL in outdated

This commit is contained in:
nhmall
2021-01-31 13:40:15 -05:00
parent b851b28cbe
commit 979571e09e
22 changed files with 213 additions and 213 deletions

View File

@@ -3,40 +3,40 @@
/* NetHack may be freely redistributed. See license for details. */
/* amidos.c */
void NDECL(flushout );
void flushout (void);
#ifndef getuid
int NDECL(getuid );
int getuid (void);
#endif
#ifndef getpid
int NDECL(getpid );
int getpid (void);
#endif
#ifndef getlogin
char *NDECL(getlogin );
char *getlogin (void);
#endif
#ifndef abs
int FDECL(abs, (int ));
int abs(int );
#endif
int NDECL(tgetch );
int NDECL(dosh );
long FDECL(freediskspace, (char *));
long FDECL(filesize, (char *));
void FDECL(eraseall, (const char * , const char *));
char *FDECL(CopyFile, (const char * , const char *));
void FDECL(copybones, (int ));
void NDECL(playwoRAMdisk );
int FDECL(saveDiskPrompt, (int ));
void NDECL(gameDiskPrompt );
void FDECL(append_slash, (char *));
void FDECL(getreturn, (const char *));
int tgetch (void);
int dosh (void);
long freediskspace(char *);
long filesize(char *);
void eraseall(const char * , const char *);
char *CopyFile(const char * , const char *);
void copybones(int );
void playwoRAMdisk (void);
int saveDiskPrompt(int );
void gameDiskPrompt (void);
void append_slash(char *);
void getreturn(const char *);
#ifndef msmsg
void FDECL(msmsg, ( const char *, ... ));
void msmsg( const char *, ... );
#endif
#if !defined(__SASC_60) && !defined(_DCC)
int FDECL(chdir, (char *));
int chdir(char *);
#endif
#ifndef strcmpi
int FDECL(strcmpi, (char * , char *));
int strcmpi(char * , char *);
#endif
#if !defined(memcmp) && !defined(AZTEC_C) && !defined(_DCC) && !defined(__GNUC__)
int FDECL(memcmp, (unsigned char * , unsigned char * , int ));
int memcmp(unsigned char * , unsigned char * , int );
#endif