summaryrefslogblamecommitdiffstats
path: root/testsuites/libtests/POSIX/dup2.c
blob: c9d231217c7a65c961fcead23c0bcece4eb95fc6 (plain) (tree)



















                                                                
/*
 * Copyright (c) 2009 by
 * Ralf Corsépius, Ulm, Germany. All rights reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * is freely granted, provided that this notice is preserved.
 */

#include <unistd.h>

int
main (void)
{
  int oldfd = 42;
  int newfd = 43;

  dup2 (oldfd, newfd);

  return 0;
}