Skip to content
Permalink
d26dfc60ed
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (11 sloc) 197 Bytes
#include <stdio.h>
extern int bar (void);
extern int baz (void);
int
foo (void)
{
int v1 = bar ();
int v2 = baz ();
printf ("bar=%d, baz=%d\n", v1, v2);
return v1 != 666 || v2 != 42;
}