Add includes to make headers self-contained

This commit is contained in:
Markus Armbruster 2009-04-21 19:30:42 +02:00
parent a78476fcb9
commit a9fd8d349b
2 changed files with 3 additions and 0 deletions

View file

@ -34,6 +34,8 @@
#ifndef SECURE_H
#define SECURE_H
#include <stddef.h>
extern size_t save_input(char *);
extern size_t seen_input(char *);
extern void forget_input(size_t);

View file

@ -36,6 +36,7 @@
#define LWPINT_H
#include <signal.h>
#include <time.h>
#include <ucontext.h>
#include "misc.h"