1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Fix includes so that string functions get prototyped

This commit is contained in:
Patrick Caulfield 2001-09-13 12:38:31 +00:00
parent 7c045c523b
commit e8cd263509
2 changed files with 5 additions and 4 deletions

View File

@ -28,10 +28,6 @@
*
*/
#include "config.h"
#include "mm/pool.h"
#include "log/log.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
@ -41,6 +37,10 @@
#include <string.h>
#include <errno.h>
#include "config.h"
#include "mm/pool.h"
#include "log/log.h"
enum {
TOK_INT,
TOK_FLOAT,

View File

@ -39,6 +39,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
#include <linux/kdev_t.h>
#include "hash.h"
#include "mm/pool.h"