source: rtems/cpukit/libcsupport/src/setpgid.c @ 98b785e

4.115
Last change on this file since 98b785e was b300e72d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/30/09 at 04:46:31

Remove unused includes.

  • Property mode set to 100644
File size: 358 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#if HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include <unistd.h>
10#include <errno.h>
11#include <rtems/seterr.h>
12
13/*PAGE
14 *
15 *  4.3.3 Set Process Group ID for Job Control, P1003.1b-1993, p. 89
16 */
17
18int setpgid(
19  pid_t  pid __attribute__((unused)),
20  pid_t  pgid __attribute__((unused))
21)
22{
23  rtems_set_errno_and_return_minus_one( ENOSYS );
24}
Note: See TracBrowser for help on using the repository browser.