diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/krb5/ext-proto.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/include/krb5/ext-proto.h b/src/include/krb5/ext-proto.h new file mode 100644 index 000000000..8a6185e7b --- /dev/null +++ b/src/include/krb5/ext-proto.h @@ -0,0 +1,29 @@ +/* + * $Source$ + * $Author$ + * $Id$ + * + * Copyright 1990 by the Massachusetts Institute of Technology. + * + * For copying and distribution information, please see the file + * <krb5/mit-copyright.h>. + * + * Prototypes for external (libc) funtions. + */ + +#include <krb5/copyright.h> + +#ifndef __EXT_PROTO__ +#define __EXT_PROTO__ + +#ifdef __STDC__ +#include <stdlib.h> +#else + +extern char *malloc(), *index(), *calloc(); + +#include <string.h> + +#endif /* ! __STDC__ */ + +#endif /* __EXT_PROTO__ */ |
