2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

ansi-fied !STDC_HEADER function prottypes

This commit is contained in:
Todd C. Miller
1994-08-08 04:41:20 +00:00
parent 72cf5123b5
commit e54f35e718
8 changed files with 25 additions and 25 deletions

View File

@@ -56,15 +56,15 @@ static char rcsid[] = "$Id$";
#include "sudo.h"
#ifndef STDC_HEADERS
extern char *malloc __P((unsigned));
extern char *getenv __P((char *));
extern char *strcpy __P((char *, char *));
extern char *malloc __P((size_t));
extern char *getenv __P((const char *));
extern char *strcpy __P((char *, const char *));
extern int fprintf __P((FILE *, const char *, ...));
extern int readlink __P((char *, char *, int));
extern int stat __P((char *, struct stat *));
extern int lstat __P((char *, struct stat *));
extern int readlink __P((const char *, char *, size_t));
extern int stat __P((const char *, struct stat *));
extern int lstat __P((const char *, struct stat *));
#ifdef HAVE_STRDUP
extern char *strdup __P((char *));
extern char *strdup __P((const char *));
#endif /* HAVE_STRDUP */
#endif /* !STDC_HEADERS */