blob: d7f54bebc1f386eb40ef03981a12720cffafdb08 (
plain)
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
|
#ifndef LYCLEAN_H
#define LYCLEAN_H
#ifndef HTUTILS_H
#include <HTUtils.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef VMS
extern BOOLEAN DidCleanup;
extern BOOLEAN HadVMSInterrupt;
#endif
extern void cleanup_sig(int sig);
extern void cleanup(void);
extern void cleanup_files(void);
extern void set_alarm(int sig);
extern void reset_alarm(void);
#ifdef __cplusplus
}
#endif
#endif /* LYCLEAN_H */
|