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

added prototypes

This commit is contained in:
Todd C. Miller
1994-05-28 19:13:27 +00:00
parent aab695bfc3
commit ebae58f1ea
3 changed files with 32 additions and 22 deletions

View File

@@ -60,14 +60,19 @@ static char rcsid[] = "$Id$";
#include <sys/errno.h>
#include "sudo.h"
void log_error();
void readchild();
static void send_mail();
static RETSIGTYPE reapchild();
static int appropriate();
/*
* Prototypes for local functions
*/
static void send_mail __P((void));
static RETSIGTYPE reapchild __P((int));
static int appropriate __P((int));
/*
* Globals
*/
static char logline[MAXLOGLEN + 8];
/**********************************************************************
*
* log_error()