summaryrefslogtreecommitdiff
path: root/LibC/signal.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-31 02:09:11 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-31 02:09:11 +0100
commitbb90c8ecabd42d44094d1ce783ea8a9e346695bc (patch)
tree56074025556fb38c724cf897b195f514ed1636a0 /LibC/signal.h
parent511ed4c4de349dd62dc302c9d46603aaeaf19f3d (diff)
downloadserenity-bb90c8ecabd42d44094d1ce783ea8a9e346695bc.zip
A bunch of LibC boilerplate stuff added while trying to get figlet to build.
Diffstat (limited to 'LibC/signal.h')
-rw-r--r--LibC/signal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LibC/signal.h b/LibC/signal.h
index 6a138098b6..73e7eeaa43 100644
--- a/LibC/signal.h
+++ b/LibC/signal.h
@@ -1,8 +1,8 @@
#pragma once
-#include "types.h"
+#include <sys/types.h>
-extern "C" {
+__BEGIN_DECLS
int kill(pid_t, int sig);
@@ -22,5 +22,5 @@ int kill(pid_t, int sig);
#define SIGALRM 14
#define SIGTERM 15
-}
+__END_DECLS