diff options
author | 2007-09-28 08:48:58 +0000 | |
---|---|---|
committer | 2007-09-28 08:48:58 +0000 | |
commit | 62efcdcef3a24f4089fd5fa55b21f7fe28f6850c (patch) | |
tree | 32889e8c4cbc9349df682243f8da1406379eac52 | |
parent | Cleanup some #includes plus some minor other cleanup. OK norby@ (diff) | |
download | wireguard-openbsd-62efcdcef3a24f4089fd5fa55b21f7fe28f6850c.tar.xz wireguard-openbsd-62efcdcef3a24f4089fd5fa55b21f7fe28f6850c.zip |
Wrap MAXFIL to 10000, so make depend works.
This should be dynamic but, ... not now.
-rw-r--r-- | usr.bin/pcc/cc/cc/cc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/pcc/cc/cc/cc.c b/usr.bin/pcc/cc/cc/cc.c index 59fc77c8d11..e523fdd863d 100644 --- a/usr.bin/pcc/cc/cc/cc.c +++ b/usr.bin/pcc/cc/cc/cc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cc.c,v 1.13 2007/09/27 20:00:23 otto Exp $ */ +/* $OpenBSD: cc.c,v 1.14 2007/09/28 08:48:58 ragge Exp $ */ /* * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved. * @@ -76,7 +76,7 @@ #define SBSIZE 10000 #define MAXINC 100 -#define MAXFIL 100 +#define MAXFIL 10000 #define MAXLIB 10000 #define MAXAV 10000 #define MAXOPT 100 |