audit-one-more-thing-20061013

it never ends
This commit is contained in:
Derrick Brashear 2006-10-13 20:40:49 +00:00
parent e3d10f048b
commit 3e10dc3a84

View File

@ -37,6 +37,16 @@ RCSID
#endif #endif
#include <afs/afsutil.h> #include <afs/afsutil.h>
/* C99 requires va_copy. Older versions of GCC provide __va_copy. Per t
Autoconf manual, memcpy is a generally portable fallback. */
#ifndef va_copy
# ifdef __va_copy
# define va_copy(d, s) __va_copy((d), (s))
# else
# define va_copy(d, s) memcpy(&(d), &(s), sizeof(va_list))
# endif
#endif
char *bufferPtr; char *bufferPtr;
int bufferLen; int bufferLen;
int osi_audit_all = (-1); /* Not determined yet */ int osi_audit_all = (-1); /* Not determined yet */