blob: 8c7cc56e5de29088d0bfbbdcecb5b0df529ae2ac [file] [log] [blame]
#include <stdio.h>
int foo (void)
{
printf ("In foo\n");
}
/* Despite having the same name as libSystem's puts(), this function will
never be called. Alas, gdb will put breakpoints and such on this, not
understanding the dyld name binding semantics fully. */
int puts (const char *in)
{
printf ("puts is being called in libmylib.c: `%s'\n", in);
}