diff options
author | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-12-03 18:29:23 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-12-03 18:29:23 +0100 |
commit | 2a65b9d550cf02934f11a00abf0ab1f7816e0da6 (patch) | |
tree | c02d43d7fc71e99acb929e81efc9b0fbb643f30f /sys/src/cmd/cpp/cpp.h | |
parent | 2608224b47a5af68bddb9502a6bb0b8080c212e9 (diff) | |
download | plan9front-2a65b9d550cf02934f11a00abf0ab1f7816e0da6.tar.xz |
cpp: raise macro argument count to 64 (sic) for freetype
Diffstat (limited to 'sys/src/cmd/cpp/cpp.h')
-rw-r--r-- | sys/src/cmd/cpp/cpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/cpp/cpp.h b/sys/src/cmd/cpp/cpp.h index 894c260cf..8299614a7 100644 --- a/sys/src/cmd/cpp/cpp.h +++ b/sys/src/cmd/cpp/cpp.h @@ -1,6 +1,6 @@ #define INS 32768 /* input buffer */ #define OBS 4096 /* outbut buffer */ -#define NARG 32 /* Max number arguments to a macro */ +#define NARG 64 /* Max number arguments to a macro */ #define NINCLUDE 64 /* Max number of include directories (-I) */ #define NIF 32 /* depth of nesting of #if */ #ifndef EOF |