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/match.c | |
parent | 6819362070fc81c869ec9a00e020c10050a066ae (diff) |
strings.h is obsolete; include string.h
Diffstat (limited to 'usr.bin/pcc/mip/match.c')
-rw-r--r-- | usr.bin/pcc/mip/match.c | 4 |
1 files changed, 2 insertions, 2 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); |