diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-11-17 12:46:04 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-11-17 12:46:04 +0000 |
commit | 32878be8b43c6ed71ad17ed6464aa097757028b5 (patch) | |
tree | eb70064bcb8a097881c34457eaebc4b192303cf4 /usr.bin/pcc/mip | |
parent | 6819362070fc81c869ec9a00e020c10050a066ae (diff) |
strings.h is obsolete; include string.h
Diffstat (limited to 'usr.bin/pcc/mip')
-rw-r--r-- | usr.bin/pcc/mip/match.c | 4 | ||||
-rw-r--r-- | usr.bin/pcc/mip/regs.c | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/pcc/mip/match.c b/usr.bin/pcc/mip/match.c index acac648d6bd..1f759df8945 100644 --- a/usr.bin/pcc/mip/match.c +++ b/usr.bin/pcc/mip/match.c @@ -1,4 +1,4 @@ -/* $OpenBSD: match.c,v 1.3 2007/10/23 18:43:00 ragge Exp $ */ +/* $OpenBSD: match.c,v 1.4 2007/11/17 12:46:03 otto Exp $ */ /* * Copyright (c) 2003 Anders Magnusson (ragge@ludd.luth.se). * All rights reserved. @@ -62,7 +62,7 @@ # include "pass2.h" -#include <strings.h> +#include <string.h> void prttype(int t); void setclass(int tmp, int class); diff --git a/usr.bin/pcc/mip/regs.c b/usr.bin/pcc/mip/regs.c index 1aa422de826..c79d7931a45 100644 --- a/usr.bin/pcc/mip/regs.c +++ b/usr.bin/pcc/mip/regs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: regs.c,v 1.11 2007/11/16 09:00:12 otto Exp $ */ +/* $OpenBSD: regs.c,v 1.12 2007/11/17 12:46:03 otto Exp $ */ /* * Copyright (c) 2005 Anders Magnusson (ragge@ludd.luth.se). * All rights reserved. @@ -28,7 +28,6 @@ #include "pass2.h" #include <string.h> -#include <strings.h> #include <stdint.h> #include <stdlib.h> |