From 432cce1c4923c1e7da74080e178619b125baa8e4 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Wed, 18 Nov 2009 23:39:18 +0000 Subject: [PATCH] VISUALC++ understands prototypes, hurray! (obs from Cristiano Pitangui). --- include/yap_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/yap_structs.h b/include/yap_structs.h index d009e5970..e538bdd55 100644 --- a/include/yap_structs.h +++ b/include/yap_structs.h @@ -14,7 +14,7 @@ * * *************************************************************************/ -#if defined(__STDC__) +#if defined(__STDC__) || defined(_MSC_VER) #define PROTO(X,ARGS) X ARGS #define CONST const