1 /* signal_handler.h 2 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style license that can be 4 * found in the LICENSE file. 5 * 6 * Signal handling functions. 7 */ 8 9 #ifndef SIGNAL_HANDLER_H 10 #define SIGNAL_HANDLER_H 11 12 int install_sigsys_handler(void); 13 14 #endif /* SIGNAL_HANDLER_H */ 15