scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit ffe3e9b4a391cb17088cff36d9449fe7bd47a796
parent 47e3a55868b27696777f41692ef3bdde1388166d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 16 Feb 2017 17:04:13 +0100

[libc] Move signal.h to the common directory

At this point signal.h hasn't specific bits, so
it can be ported directly.

Diffstat:
Dlibc/include/i386-sysv/signal.h | 8--------
Dlibc/include/qbe/signal.h | 8--------
Rlibc/include/amd64-sysv/signal.h -> libc/include/signal.h | 0
Dlibc/include/z80/signal.h | 8--------
4 files changed, 0 insertions(+), 24 deletions(-)

diff --git a/libc/include/i386-sysv/signal.h b/libc/include/i386-sysv/signal.h @@ -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 @@ -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/amd64-sysv/signal.h b/libc/include/signal.h diff --git a/libc/include/z80/signal.h b/libc/include/z80/signal.h @@ -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