/* o(x)
 *
 * Compile with gcc -c o.c -o o.o
 *
 */

void o( int n )
{
	printf( "%d\n", n );
}

