X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-open.c;h=3c5b2abdbb027e6357b4238cfb909ddabd82a41d;hb=1bb384c44db25aef8f8b455cef22af32d8401abc;hp=df7e36fd83afcca6f7a867af3f4339fd6943073b;hpb=45b8409ffe3828d32d20281f1038816573e753df;p=gnulib.git diff --git a/tests/test-open.c b/tests/test-open.c index df7e36fd8..3c5b2abdb 100644 --- a/tests/test-open.c +++ b/tests/test-open.c @@ -1,5 +1,5 @@ /* Test of opening a file descriptor. - Copyright (C) 2007-2009 Free Software Foundation, Inc. + Copyright (C) 2007-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,4 +20,22 @@ #include +#include "signature.h" +SIGNATURE_CHECK (open, int, (char const *, int, ...)); + +#include +#include +#include +#include + +#include "macros.h" + +#define BASE "test-open.t" + #include "test-open.h" + +int +main (void) +{ + return test_open (open, true); +}