]> git.saurik.com Git - apple/libc.git/blobdiff - include/crt_externs.h
Libc-1044.1.2.tar.gz
[apple/libc.git] / include / crt_externs.h
index af46a2b8ec8376162091d69f2bf61a1d80c82d0d..eb3729adad0d9dbcd00ff2e47d9d669c4ccd297e 100644 (file)
@@ -3,8 +3,6 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
- * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
 ** AOF (afreier@next.com)
 */
 
+#include <sys/cdefs.h>
+
+__BEGIN_DECLS
 extern char ***_NSGetArgv(void);
 extern int *_NSGetArgc(void);
 extern char ***_NSGetEnviron(void);
 extern char **_NSGetProgname(void);
-extern struct mach_header *_NSGetMachExecuteHeader(void);
+#ifdef __LP64__
+extern struct mach_header_64 *
+#else /* !__LP64__ */
+extern struct mach_header *
+#endif /* __LP64__ */
+                               _NSGetMachExecuteHeader(void);
+__END_DECLS