2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-30 05:48:18 +00:00

added declarations for yyparse() and yylex()

This commit is contained in:
Todd C. Miller 1996-06-20 04:41:55 +00:00
parent 2f49ee3160
commit 08470fd767

8
sudo.h
View File

@ -156,11 +156,9 @@ extern int top;
#define user_dir (user_pw_ent -> pw_dir)
/*
* Prototypes
* Function prototypes
*/
/* These are the functions that are called in sudo(8) */
#define YY_DECL int yylex __P((void))
#ifndef HAVE_STRDUP
char *strdup __P((const char *));
@ -182,6 +180,8 @@ int validate __P((int));
void set_perms __P((int));
void remove_timestamp __P((void));
void load_interfaces __P((void));
int yyparse __P((void));
YY_DECL;
/*