about summary refs log tree commit diff stats
path: root/wiki/vendor
Commit message (Expand)AuthorAgeFilesLines
* installed dokuwiki, added to navbar, updated newsahriman2018-12-03402-0/+158189
3056e86319ebba4218156'>e087f6d4
1fc1d8af ^


e087f6d4
1fc1d8af ^
d326f24d ^
e087f6d4

1fc1d8af ^
d326f24d ^
1fc1d8af ^
e087f6d4
6cb04c09 ^
1fc1d8af ^
d326f24d ^
c7bfda90 ^
1fc1d8af ^
d326f24d ^
c7bfda90 ^



1fc1d8af ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31




                   


                  
          
                                                    
 

             
                                            
                                                                                    
                                         
 
                     
                                         
 
                                 
                                                                   
 



                                         



                                                
#ifndef LYSIGNAL_H
#define LYSIGNAL_H

#include <signal.h>

#ifdef __cplusplus
extern "C" {
#endif
#ifdef VMS
    extern void VMSsignal(int sig, void (*func) ());

#ifdef signal
#undef signal
#endif				/* signal */
#define signal(a,b) VMSsignal(a,b)	/* use LYCurses.c routines for interrupts */
#endif				/* VMS */

#ifdef HAVE_SIGACTION
    typedef void LYSigHandlerFunc_t(int);

/* implementation in LYUtils.c */
    extern void LYExtSignal(int sig, LYSigHandlerFunc_t * handler);

#else
#define LYExtSignal(sig,h) signal(sig, h)
#endif

#ifdef __cplusplus
}
#endif
#endif				/* LYSIGNAL_H */