You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/gnustep-base/gnustep-make/files/testlibobjc.m

11 lines
229 B

/**
* Use "gcc -Werror -Wl,-l:libobjc.so.x testlibobjc.m -o /dev/null"
* #import generates a warning with non-objc
*/
#import <stdio.h>
int main( int argc, const char *argv[] ) {
printf("Linker test\n");
return 0;
}