2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 22:35:10 +00:00

added missing paren

This commit is contained in:
Todd C. Miller
1994-08-08 04:27:34 +00:00
parent cf91591b62
commit 72cf5123b5
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ extern char *strcpy __P((char *, char *));
extern int strlen __P((char *));
extern char *getwd __P((char *));
extern char *malloc __P((unsigned));
extern FILE *popen __P((char *, char *);
extern FILE *popen __P((char *, char *));
extern int pclose __P((FILE *));
extern char *fgets __P((char *, int, FILE *));
#endif /* !STDC_HEADERS */

View File

@@ -59,7 +59,7 @@ extern char *strcpy __P((char *, char *));
extern int strlen __P((char *));
extern char *getwd __P((char *));
extern char *malloc __P((unsigned));
extern FILE *popen __P((char *, char *);
extern FILE *popen __P((char *, char *));
extern int pclose __P((FILE *));
extern char *fgets __P((char *, int, FILE *));
#endif /* !STDC_HEADERS */