1 | #ifndef FRONTEND_SIGNAL_H |
2 | #define FRONTEND_SIGNAL_H |
3 | |
4 | #include "mycpp/runtime.h" |
5 | |
6 | namespace signal_def { |
7 | |
8 | const int NO_SIGNAL = -1; |
9 | |
10 | void PrintSignals(); |
11 | |
12 | int GetNumber(BigStr* sig_spec); |
13 | |
14 | } // namespace signal_def |
15 | |
16 | #endif // FRONTEND_SIGNAL_H |