blob: d668e52b693f937aa896ed30e92b31493919ef42 [file] [log] [blame]
/* -*- Mode: C; tab-width: 8; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
#include "util.h"
int main(void) {
int fd;
for (fd = 3; fd < 100; ++fd) {
/* Check that |fd| is available to us. */
test_assert(dup2(2, fd) == fd);
}
atomic_puts("EXIT-SUCCESS");
return 0;
}