Skip to content

Commit

Permalink
stdint.h has yet to appear on VMS.
Browse files Browse the repository at this point in the history
Despite the compiler's claiming C99 compliance.  What we probably
really need here is I_STDINT, or perhaps HAVE_INTMAX and
HAVE_UINTMAX, determined by Configure and friends.  But in any case
07208e0 broke the build, so this
gets it going again for now.
  • Loading branch information
craigberry committed Dec 20, 2010
1 parent 38684ba commit 4b2d667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sv.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "regcomp.h"

#ifndef HAS_C99
# if __STDC_VERSION__ >= 199901L
# if __STDC_VERSION__ >= 199901L && !defined(VMS)
# define HAS_C99 1
# endif
#endif
Expand Down

0 comments on commit 4b2d667

Please sign in to comment.