From 88c7788b4ef8c360814756f72fabee67f6b9b8d8 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sat, 11 Feb 2012 18:46:17 +0100 Subject: [PATCH] Fixed stdint.h include guard conflicting with unistd.h. --- libmaxsi/c/hsrc/stdint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmaxsi/c/hsrc/stdint.h b/libmaxsi/c/hsrc/stdint.h index da7fce89..6dce2242 100644 --- a/libmaxsi/c/hsrc/stdint.h +++ b/libmaxsi/c/hsrc/stdint.h @@ -24,8 +24,8 @@ /* TODO: POSIX-1.2008 compliance is only partial */ -#ifndef _UNISTD_H -#define _UNISTD_H 1 +#ifndef _STDINT_H +#define _STDINT_H 1 #include