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