1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Prepare to remove the declaration of sys_siglist from <unistd.h>.

It should only be declared in <signal.h> if at all.  Modload used
to depend on getting it from <unistd.h> because it only included
<sys/signal.h>.
This commit is contained in:
Bruce Evans 1997-06-29 20:38:38 +00:00
parent 11fe7d5e79
commit 2bdcf54dc6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27080

View File

@ -29,11 +29,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: modload.c,v 1.17 1997/03/11 12:23:09 peter Exp $
* $Id: modload.c,v 1.18 1997/03/29 03:32:29 imp Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
@ -49,7 +50,6 @@
#include <sys/lkm.h>
#include <sys/file.h>
#include <sys/wait.h>
#include <sys/signal.h>
#include "pathnames.h"
#define min(a, b) ((a) < (b) ? (a) : (b))