From f1f9bb147e92e7851a020d5e73403c4576eb25ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Wed, 10 Jan 2007 20:02:41 +0000 Subject: [PATCH] Don't rely on stdio.h to define EOF, as native stdio.h can conflict with ROS headers svn path=/trunk/; revision=25419 --- reactos/lib/string/sscanf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/lib/string/sscanf.c b/reactos/lib/string/sscanf.c index 39b28f22299..fdb2bc78363 100644 --- a/reactos/lib/string/sscanf.c +++ b/reactos/lib/string/sscanf.c @@ -5,7 +5,8 @@ #include #include #include -#include + +#define EOF (-1) /* helper function for *scanf. Returns the value of character c in the * given base, or -1 if the given character is not a digit of the base.