mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
audit-one-more-thing-20061013
it never ends
This commit is contained in:
parent
e3d10f048b
commit
3e10dc3a84
@ -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 */
|
||||||
|
Loading…
Reference in New Issue
Block a user