diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2015-01-08 09:18:16 +0100 |
---|---|---|
committer | Thomas Klausner <wiz@NetBSD.org> | 2015-01-08 19:04:52 +0100 |
commit | f9baaf55ff8cbd4bf018a34f181eda30d03b20dc (patch) | |
tree | dd78ac2b515b2c0af2cab39148839e8f964b391a /util | |
parent | 51d63a9d82dc4f2407862131bbf3e5d72b4505d3 (diff) |
Use string.h instead of X11/Xos.h.
Long long ago, Xos.h was needed to choose between <string.h> &
<strings.h> depending on the OS in use.
Today we can rely on C89 & later providing <string.h> everywhere
for us.
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/makestrs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/makestrs.c b/util/makestrs.c index a52866a..ce0a0a3 100644 --- a/util/makestrs.c +++ b/util/makestrs.c @@ -27,7 +27,7 @@ in this Software without prior written authorization from The Open Group. /* Constructs string definitions */ #include <stdio.h> -#include <X11/Xos.h> +#include <string.h> #include <stdlib.h> #include <unistd.h> |