diff options
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/pcc/cc/cc/cc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/pcc/cc/cc/cc.c b/usr.bin/pcc/cc/cc/cc.c index 6abb82c7ad4..540b845966f 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.8 2007/09/19 15:21:07 todd Exp $ */ +/* $OpenBSD: cc.c,v 1.9 2007/09/19 16:08:33 todd Exp $ */ /* * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved. * @@ -239,6 +239,8 @@ main(int argc, char *argv[]) pgflag++; else if (strcmp(argv[i], "-pthread") == 0) pthreads++; + else if (strcmp(argv[i], "-pipe") == 0) + /* NOTHING YET */; else errorx(1, "unknown option %s", argv[i]); break; |