diff options
Diffstat (limited to 'sys/netatm/ipatm/ipatm_input.c')
-rw-r--r-- | sys/netatm/ipatm/ipatm_input.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sys/netatm/ipatm/ipatm_input.c b/sys/netatm/ipatm/ipatm_input.c index ca3e3e7..5d292fe 100644 --- a/sys/netatm/ipatm/ipatm_input.c +++ b/sys/netatm/ipatm/ipatm_input.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: ipatm_input.c,v 1.9 1998/04/07 23:03:52 mks Exp $ + * @(#) $Id: ipatm_input.c,v 1.1 1998/09/15 08:23:00 phk Exp $ * */ @@ -35,16 +35,16 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: ipatm_input.c,v 1.9 1998/04/07 23:03:52 mks Exp $"; -#endif - #include <netatm/kern_include.h> #include <netatm/ipatm/ipatm.h> #include <netatm/ipatm/ipatm_var.h> #include <netatm/ipatm/ipatm_serv.h> +#ifndef lint +__RCSID("@(#) $Id: ipatm_input.c,v 1.1 1998/09/15 08:23:00 phk Exp $"); +#endif + /* * Process VCC Input Data @@ -111,7 +111,10 @@ ipatm_ipinput(inp, m) struct ip_nif *inp; KBuffer *m; { - int s, space; + int s; +#if BSD < 199103 + int space; +#endif #ifdef DIAGNOSTIC if (ipatm_print) { |