Include errno.h

This commit is contained in:
Ryan Dwyer 2018-07-28 10:24:04 +10:00
parent d6daf10cad
commit a4bcddcfdc
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#define _POSIX_C_SOURCE 200809L
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,6 +1,7 @@
#define _XOPEN_SOURCE 700
#define _POSIX_C_SOURCE 199309L
#include <assert.h>
#include <errno.h>
#ifdef __linux__
#include <linux/input-event-codes.h>
#elif __FreeBSD__