Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/rump_allserver Use signal.h instead of sys/signal.h....
details: https://anonhg.NetBSD.org/src/rev/2387792bc862
branches: trunk
changeset: 325595:2387792bc862
user: pooka <pooka%NetBSD.org@localhost>
date: Tue Dec 31 00:23:56 2013 +0000
description:
Use signal.h instead of sys/signal.h. The latter is not standard
and does not exist at least on systems with musl libc.
from Justin Cormack
diffstat:
usr.bin/rump_allserver/rump_allserver.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (29 lines):
diff -r 01f9a0fe5ca7 -r 2387792bc862 usr.bin/rump_allserver/rump_allserver.c
--- a/usr.bin/rump_allserver/rump_allserver.c Mon Dec 30 22:32:45 2013 +0000
+++ b/usr.bin/rump_allserver/rump_allserver.c Tue Dec 31 00:23:56 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rump_allserver.c,v 1.32 2013/12/18 20:56:32 pooka Exp $ */
+/* $NetBSD: rump_allserver.c,v 1.33 2013/12/31 00:23:56 pooka Exp $ */
/*-
* Copyright (c) 2010, 2011 Antti Kantee. All Rights Reserved.
@@ -28,17 +28,17 @@
#include <rump/rumpuser_port.h>
#ifndef lint
-__RCSID("$NetBSD: rump_allserver.c,v 1.32 2013/12/18 20:56:32 pooka Exp $");
+__RCSID("$NetBSD: rump_allserver.c,v 1.33 2013/12/31 00:23:56 pooka Exp $");
#endif /* !lint */
#include <sys/types.h>
-#include <sys/signal.h>
#include <sys/stat.h>
#include <dlfcn.h>
#include <errno.h>
#include <fcntl.h>
#include <semaphore.h>
+#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
Home |
Main Index |
Thread Index |
Old Index