This commit is contained in:
Joel Sherrill
1996-05-24 22:58:15 +00:00
parent 87a2a7418b
commit 3320e526ff
28 changed files with 674 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid = getpid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid = getppid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
uid_t uid;
uid = getuid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
uid_t uid;
uid = geteuid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t gid;
gid = getgid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t gid;
gid = getegid();
}

View File

@@ -0,0 +1,26 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
uid_t uid;
int result;
uid = 0;
result = setuid( uid );
}

View File

@@ -0,0 +1,26 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t gid;
int result;
gid = 0;
result = setgid( gid );
}

View File

@@ -0,0 +1,27 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t grouplist[ 20 ];
int gidsetsize;
int result;
gidsetsize = 20;
result = getgroups( gidsetsize, grouplist );
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
char *loginname;
loginname = getlogin();
}

View File

@@ -0,0 +1,26 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
#include <limits.h> /* for LOGIN_NAME_MAX */
void test( void )
{
char loginnamebuffer[ LOGIN_NAME_MAX ];
char *loginname;
int result;
result = getlogin_r( loginnamebuffer, LOGIN_NAME_MAX );
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pgrp;
pgrp = getpgrp();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid = setsid();
}

View File

@@ -0,0 +1,25 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid_t pgid;
int result;
result = setpgid( pid, pgid );
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid = getpid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid = getppid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
uid_t uid;
uid = getuid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
uid_t uid;
uid = geteuid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t gid;
gid = getgid();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t gid;
gid = getegid();
}

View File

@@ -0,0 +1,26 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
uid_t uid;
int result;
uid = 0;
result = setuid( uid );
}

View File

@@ -0,0 +1,26 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t gid;
int result;
gid = 0;
result = setgid( gid );
}

View File

@@ -0,0 +1,27 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
gid_t grouplist[ 20 ];
int gidsetsize;
int result;
gidsetsize = 20;
result = getgroups( gidsetsize, grouplist );
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
char *loginname;
loginname = getlogin();
}

View File

@@ -0,0 +1,26 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
#include <limits.h> /* for LOGIN_NAME_MAX */
void test( void )
{
char loginnamebuffer[ LOGIN_NAME_MAX ];
char *loginname;
int result;
result = getlogin_r( loginnamebuffer, LOGIN_NAME_MAX );
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pgrp;
pgrp = getpgrp();
}

View File

@@ -0,0 +1,23 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid = setsid();
}

View File

@@ -0,0 +1,25 @@
/*
* This test file is used to verify that the header files associated with
* the callout are correct.
*
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
* On-Line Applications Research Corporation (OAR).
* All rights assigned to U.S. Government, 1994.
*
* This material may be reproduced by or for the U.S. Government pursuant
* to the copyright license under the clause at DFARS 252.227-7013. This
* notice must appear in all copies of this file and its derivatives.
*
* $Id$
*/
#include <sys/types.h>
void test( void )
{
pid_t pid;
pid_t pgid;
int result;
result = setpgid( pid, pgid );
}