]> git.saurik.com Git - apple/libc.git/blobdiff - secure/chk_fail.c
Libc-1158.50.2.tar.gz
[apple/libc.git] / secure / chk_fail.c
index 95b536d18e7fd7c0980ae53a7c005ba8d674849a..29401b886dafaff4fc867ee335f3a5a9b9e852dd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007 Apple Inc. All rights reserved.
+ * Copyright (c) 2007-2013 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  *
 #include <syslog.h>
 #include <sys/sysctl.h>
 #include <sys/param.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <TargetConditionals.h>
 
-extern void __abort(void) __dead2;
-
-void
-__attribute__ ((noreturn))
-__chk_fail (void)
-{
-  const char message[] = "[%d] detected buffer overflow";
-
-  syslog(LOG_CRIT, message, getpid());
-
-  __abort();
-}