1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

1. "#ifdef 0" is bad C. ifdef is for checking a macro and 0 is

an illegal macro name.  Correct syntax is "#if 0".  This is in...

From: Darren King <darrenk@insightdist.com>
This commit is contained in:
Marc G. Fournier
1998-02-01 00:02:59 +00:00
parent 7a33578436
commit 1af818b8bf
3 changed files with 9 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ extern int pwd_cache_count;
extern char* crypt_getpwdfilename(void);
extern char* crypt_getpwdreloadfilename(void);
#ifdef 0
#if 0
extern MsgType crypt_salt(const char* user);
#endif
extern int crypt_verify(Port* port, const char* user, const char* pgpass);