1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Properly include prototypes.

Submitted-by: "Daniel O'Callaghan" <danny@panda.hilink.com.au>
This commit is contained in:
Jordan K. Hubbard 1996-10-07 04:21:09 +00:00
parent 581eec05b8
commit 9f202f0cde
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18786
2 changed files with 7 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: main.c,v 1.19 1996/05/11 20:48:34 phk Exp $
* $Id: main.c,v 1.20 1996/07/09 17:40:36 ache Exp $
*
* TODO:
* o Add commands for traffic summary, version display, etc.
@ -32,6 +32,7 @@
#include <sys/wait.h>
#include <errno.h>
#include <netdb.h>
#include <unistd.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include "modem.h"

View File

@ -18,7 +18,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: pap.c,v 1.5 1996/05/11 20:48:38 phk Exp $
* $Id: pap.c,v 1.6 1996/10/06 13:32:30 jkh Exp $
*
* TODO:
*/
@ -31,6 +31,10 @@
#include "phase.h"
#include "auth.h"
#ifdef PASSWDAUTH
# include "passwdauth.h"
#endif
static char *papcodes[] = {
"???", "REQUEST", "ACK", "NAK"
};