(nbio) Use boolean.h

This commit is contained in:
twinaphex 2015-02-16 00:34:15 +01:00
parent 16159a751f
commit 215c434e81
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ TARGET := nbio_test
SOURCES := $(wildcard *.c)
OBJS := $(SOURCES:.c=.o)
CFLAGS += -Wall -pedantic -std=gnu99 -O0 -g -I../../include
CFLAGS += -Wall -pedantic -std=gnu99 -O0 -g -I../libretro-sdk/include
all: $(TARGET)

View File

@ -1,5 +1,5 @@
#include <stddef.h> /* size_t */
#include <stdbool.h> /* bool */
#include <stddef.h>
#include <boolean.h>
enum nbio_mode_t {
/* The comments tell which mode in fopen() it corresponds to. */