According to shared memory man pages, advice including <sys/types.h>

instead of <sys/param.h>
This commit is contained in:
Kevin Lo 2012-05-21 07:52:46 +00:00
parent 32f648079f
commit 8b0349c836
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235719
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
* Test the SVID-compatible Message Queue facility.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/wait.h>

View File

@ -35,7 +35,7 @@
* Test the SVID-compatible Semaphore facility.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/wait.h>

View File

@ -35,7 +35,7 @@
* Test the SVID-compatible Shared Memory facility.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/wait.h>