mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-24 01:11:01 +00:00
11 lines
232 B
C
11 lines
232 B
C
|
/* 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);
|
||
|
}
|