lib: vfscanf: Add missing #include.

* lib/stdio/vfscanf.c: Add missing #include.
This commit is contained in:
Danny Milosavljevic 2019-03-15 00:41:34 +01:00 committed by Jan (janneke) Nieuwenhuizen
parent ac8496aa3b
commit af09c71462
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
/* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software
* Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
*
* This file is part of GNU Mes.
*
@ -24,6 +25,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
int
vfscanf (FILE * stream, char const *template, va_list ap)