Fix insufficiently parenthesized macro expansions.

This commit is contained in:
Markus Armbruster 2006-04-30 16:08:45 +00:00
parent cee8e126a2
commit a292d6f98a
16 changed files with 43 additions and 80 deletions

View file

@ -55,7 +55,7 @@ typedef long ssize_t;
#define random rand
#define srandom srand
#define strncasecmp(s1, s2, s3) _strnicmp(s1, s2, s3)
#define strncasecmp(s1, s2, s3) _strnicmp((s1), (s2), (s3))
#define mkdir(dir,perm) _mkdir((dir))
typedef int pid_t;