summaryrefslogblamecommitdiffstats
path: root/testsuites/libtests/POSIX/pipe.c
blob: debd3a0387112caf5e50bb421695e41d6b3bf877 (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 filedes[2];
  int status;

  status = pipe (filedes);

  return 0;
}