Include stdio.h in getline.h for FILE

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
This commit is contained in:
Stéphane Graber 2013-08-16 15:10:13 +02:00
parent 120ce443c4
commit 2e74d6f374

View File

@ -1,6 +1,8 @@
#ifndef _getline_h
#define _getline_h
#include <stdio.h>
extern ssize_t getline(char **outbuf, size_t *outsize, FILE *fp);
#endif