[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] This must be an gcc / ld error!



How to compile this code:

#include <string.h>

int main ( void )
{
	char * x = "1235554444111abc";
	char * y;
	y = strchrnul(x, (int)'a');
	return( 0 );
}

without missing references?