Doxygen Source Code Documentation
signal_.c File Reference
#include "f2c.h"#include "signal.h"Go to the source code of this file.
Typedefs | |
| typedef void(* | sig_type )(int) |
| typedef int(* | sig_proc )(int) |
Functions | |
| ftnint | signal_ (integer *sigp, sig_proc proc) |
Typedef Documentation
|
|
Definition at line 12 of file signal_.c. Referenced by signal_(). |
|
|
Definition at line 11 of file signal_.c. Referenced by signal_(). |
Function Documentation
|
||||||||||||
|
Definition at line 14 of file signal_.c. References sig_proc, and sig_type.
00016 {
00017 int sig;
00018 sig = (int)*sigp;
00019
00020 return (ftnint)signal(sig, (sig_type)proc);
00021 }
|