blob: 27f79c58f41f58e4268f3cb9099a2a687cfd012d (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef CODEGEN_SORT_C_H
#define CODEGEN_SORT_C_H
#include "codegen_c.h"
int __flatcc_gen_sort(fb_output_t *out);
#define gen_sort __flatcc_gen_sort
#endif /* CODEGEN_SORT_C_H */
|