libkernaux/src/libc.h

19 lines
267 B
C

// TODO: remove this file, require needed headers separately
#ifndef KERNAUX_INCLUDED_SRC_LIBC
#define KERNAUX_INCLUDED_SRC_LIBC
#ifdef __cplusplus
extern "C" {
#endif
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#ifdef __cplusplus
}
#endif
#endif