New file.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1917 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-10-31 20:40:28 +00:00
parent 3f402144d1
commit 15cff58634

10
config/config.vsprintf.c Normal file
View file

@ -0,0 +1,10 @@
/* Exit with status 0 if vsprintf returns the length of the string printed.
Some systems return a pointer to the string instead. */
int main ()
{
char buf[128];
if (vsprintf (buf, "1234") == 4)
exit (0);
exit (-1);
}