mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
12 lines
164 B
C
12 lines
164 B
C
#include "f2c.h"
|
|
#include "signal1.h"
|
|
|
|
void *
|
|
G77_signal_0 (integer * sigp, sig_pf proc)
|
|
{
|
|
int sig;
|
|
sig = (int) *sigp;
|
|
|
|
return (void *) signal (sig, proc);
|
|
}
|