misc/vim: inform the user when no results are found
[nit.git] / c_src / standard__kernel._ffi.c
1 /*
2 Extern implementation of Nit module kernel
3 */
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include "standard__kernel._ffi.h"
7 #ifdef ANDROID
8 #include <android/log.h>
9 #define PRINT_ERROR(...) (void)__android_log_print(ANDROID_LOG_WARN, "Nit", __VA_ARGS__)
10 #else
11 #define PRINT_ERROR(...) fprintf(stderr, __VA_ARGS__)
12 #endif
13 #line 19 "../lib/standard/kernel.nit"
14
15
16 #include <errno.h>
17
18 long kernel___Sys_errno___impl( Sys recv )
19 {
20 #line 113 "../lib/standard/kernel.nit"
21
22
23 return errno;
24 }