"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "xlab-0.8.3/common.h" of archive xlab-0.8.3.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 #if __STDC__ || defined(__cplusplus)
    2 #define P_(s) s
    3 #else
    4 #define P_(s) ()
    5 #endif
    6 
    7 /* common.c */
    8 char *Malloc P_((long n));
    9 void SignalURG P_((int n));
   10 void SignalPIPE P_((int n));
   11 void SignalINT P_((int n));
   12 void SignalQUIT P_((int n));
   13 void SignalTERM P_((int n));
   14 void SignalTSTP P_((int n));
   15 void SignalCONT P_((int n));
   16 void SignalUSR1 P_((int n));
   17 void SignalHUP P_((int n));
   18 void SetSignalHandling P_((void));
   19 void SetUpConnectionSocket P_((int iport));
   20 
   21 #undef P_