commit ffe3e9b4a391cb17088cff36d9449fe7bd47a796
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Thu Feb 16 17:04:13 2017 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Thu Feb 16 17:04:13 2017 +0100

    [libc] Move signal.h to the common directory
    
    At this point signal.h hasn't specific bits, so
    it can be ported directly.

diff --git a/libc/include/amd64-sysv/signal.h b/libc/include/amd64-sysv/signal.h
deleted file mode 100644
index 24735f2..0000000
--- a/libc/include/amd64-sysv/signal.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#ifndef _SIGNAL_H
-#define _SIGNAL_H
-
-void ( *signal(int signum, void (*handler)(int)) ) (int);
-int raise(int sig);
-
-#endif
diff --git a/libc/include/i386-sysv/signal.h b/libc/include/i386-sysv/signal.h
deleted file mode 100644
index 24735f2..0000000
--- a/libc/include/i386-sysv/signal.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#ifndef _SIGNAL_H
-#define _SIGNAL_H
-
-void ( *signal(int signum, void (*handler)(int)) ) (int);
-int raise(int sig);
-
-#endif
diff --git a/libc/include/qbe/signal.h b/libc/include/qbe/signal.h
deleted file mode 100644
index 24735f2..0000000
--- a/libc/include/qbe/signal.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#ifndef _SIGNAL_H
-#define _SIGNAL_H
-
-void ( *signal(int signum, void (*handler)(int)) ) (int);
-int raise(int sig);
-
-#endif
diff --git a/libc/include/signal.h b/libc/include/signal.h
new file mode 100644
index 0000000..24735f2
--- /dev/null
+++ b/libc/include/signal.h
@@ -0,0 +1,8 @@
+/* See LICENSE file for copyright and license details. */
+#ifndef _SIGNAL_H
+#define _SIGNAL_H
+
+void ( *signal(int signum, void (*handler)(int)) ) (int);
+int raise(int sig);
+
+#endif
diff --git a/libc/include/z80/signal.h b/libc/include/z80/signal.h
deleted file mode 100644
index 24735f2..0000000
--- a/libc/include/z80/signal.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#ifndef _SIGNAL_H
-#define _SIGNAL_H
-
-void ( *signal(int signum, void (*handler)(int)) ) (int);
-int raise(int sig);
-
-#endif

Reply via email to