Add more missing include directives.
authorJim Meyering <jim@meyering.net>
Wed, 13 Apr 2011 11:15:39 +0000 (13:15 +0200)
committerRichard W.M. Jones <rjones@redhat.com>
Wed, 13 Apr 2011 13:25:56 +0000 (14:25 +0100)
* cat/virt-cat.c: Include string.h and libintl.h.
* cat/virt-filesystems.c: Likewise.
* cat/virt-ls.c: Likewise.

cat/virt-cat.c
cat/virt-filesystems.c
cat/virt-ls.c

index dca9ef4..06bd8b1 100644 (file)
@@ -1,5 +1,5 @@
 /* virt-cat
- * Copyright (C) 2010 Red Hat Inc.
+ * Copyright (C) 2010-2011 Red Hat Inc.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <inttypes.h>
 #include <unistd.h>
 #include <getopt.h>
 #include <locale.h>
 #include <assert.h>
+#include <libintl.h>
 
 #include "progname.h"
 
index c6d52ac..10084de 100644 (file)
@@ -1,5 +1,5 @@
 /* virt-filesystems
- * Copyright (C) 2010 Red Hat Inc.
+ * Copyright (C) 2010-2011 Red Hat Inc.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -26,6 +26,8 @@
 #include <getopt.h>
 #include <locale.h>
 #include <assert.h>
+#include <string.h>
+#include <libintl.h>
 
 #include "c-ctype.h"
 #include "human.h"
index e2700d2..b510f9a 100644 (file)
@@ -1,5 +1,5 @@
 /* virt-ls
- * Copyright (C) 2010 Red Hat Inc.
+ * Copyright (C) 2010-2011 Red Hat Inc.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -26,6 +26,8 @@
 #include <fcntl.h>
 #include <locale.h>
 #include <assert.h>
+#include <string.h>
+#include <libintl.h>
 
 #include "progname.h"