Add missing include directives.

* fish/config.c: Include string.h, for use of strlen.
* fish/keys.c: Likewise, but for use of memcpy.
* fish/man.c: Likewise, but for use of memset.
This commit is contained in:
Jim Meyering
2011-04-13 13:00:06 +02:00
committed by Richard W.M. Jones
parent a53833fdd2
commit 0db662eae5
3 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/* guestfish - the filesystem interactive shell
* 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
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/wait.h>
#include "fish.h"