setpgrp.c 214 B

123456789101112
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #include <unistd.h>
  7. int setpgrp(void)
  8. {
  9. return setpgid(0,0);
  10. }