1 //===-- SysSignal.h ---------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  Created by Greg Clayton on 6/18/07.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef __SysSignal_h__
15 #define __SysSignal_h__
16 
17 class SysSignal {
18 public:
19   static const char *Name(int signal);
20 };
21 
22 #endif
23