blob: dde186b534035935fbfd99f94634557f6009d4f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2018 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 */
|