48e74f46fc
which can be emulated using qemu (for, hopefully, a test suite). Currently it generates images which won't run because there's no RAM.
16 lines
217 B
C
16 lines
217 B
C
/* $Source$
|
|
* $State$
|
|
* $Revision$
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include "libsys.h"
|
|
|
|
sighandler_t signal(int signum, sighandler_t handler)
|
|
{
|
|
return SIG_DFL;
|
|
}
|