cmd/init: add missing library

`perror` (which we use) comes from `stdio.h` (which we missed).

Signed-off-by: Ciro S. Costa <cscosta@pivotal.io>
This commit is contained in:
Ciro S. Costa 2020-02-07 08:07:08 -05:00
parent c97d181643
commit becc3eefa9
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* zombies when they `exit`).
*/
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <stddef.h>