X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-fopen.c;h=c36006a6766c31500ed36f3711b875db14469494;hb=b5aab1e9a03e2abc2c518ccafb5313a9697614ea;hp=473d274f4767b3d5c72d492b660fcd1600dc4120;hpb=41fc74b9ab67321453d103d056a6e8eb8897042a;p=pspp diff --git a/tests/test-fopen.c b/tests/test-fopen.c index 473d274f47..c36006a676 100644 --- a/tests/test-fopen.c +++ b/tests/test-fopen.c @@ -1,5 +1,5 @@ /* Test of opening a file stream. - 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,15 @@ #include +#include "signature.h" +SIGNATURE_CHECK (fopen, FILE *, (char const *, char const *)); + +#define BASE "test-fopen.t" + #include "test-fopen.h" + +int +main (void) +{ + return test_fopen (); +}