blob: 021dc6ec82fb37110772e0bb6fe338e9f7e13b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#ifndef _COMPAT_H
#define _COMPAT_H
int bc_compat_status_code(int waitstatus);
#endif /* _COMPAT_H */
|