=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/alloc.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/sudo/Attic/alloc.c 2000/06/05 14:01:15 1.2 --- src/usr.bin/sudo/Attic/alloc.c 2002/01/03 03:49:16 1.3 *************** *** 1,5 **** /* ! * Copyright (c) 1999 Todd C. Miller * All rights reserved. * * Redistribution and use in source and binary forms, with or without --- 1,5 ---- /* ! * Copyright (c) 1999-2001 Todd C. Miller * All rights reserved. * * Redistribution and use in source and binary forms, with or without *************** *** 34,54 **** #include "config.h" #include #ifdef STDC_HEADERS ! #include #endif /* STDC_HEADERS */ #ifdef HAVE_STRING_H ! #include #endif /* HAVE_STRING_H */ - #ifdef HAVE_STRINGS_H - #include - #endif /* HAVE_STRINGS_H */ #if defined(HAVE_MALLOC_H) && !defined(STDC_HEADERS) ! #include #endif /* HAVE_MALLOC_H && !STDC_HEADERS */ - #include - #include #include "sudo.h" --- 34,60 ---- #include "config.h" + #include + #include #include #ifdef STDC_HEADERS ! # include ! # include ! #else ! # ifdef HAVE_STDLIB_H ! # include ! # endif #endif /* STDC_HEADERS */ #ifdef HAVE_STRING_H ! # include ! #else ! # ifdef HAVE_STRINGS_H ! # include ! # endif #endif /* HAVE_STRING_H */ #if defined(HAVE_MALLOC_H) && !defined(STDC_HEADERS) ! # include #endif /* HAVE_MALLOC_H && !STDC_HEADERS */ #include "sudo.h" *************** *** 61,67 **** extern char **Argv; /* from sudo.c */ #ifndef lint ! static const char rcsid[] = "$Sudo: alloc.c,v 1.8 1999/07/31 16:19:44 millert Exp $"; #endif /* lint */ --- 67,73 ---- extern char **Argv; /* from sudo.c */ #ifndef lint ! static const char rcsid[] = "$Sudo: alloc.c,v 1.10 2001/12/14 19:52:47 millert Exp $"; #endif /* lint */