2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc / execute / string1.m
blob58a603c1f1f9348753160069b7ec89a473df1348
1 /* Based on a test case contributed by Nicola Pero.  */
3 #include <string.h>
4 #include <stdlib.h>
6 #ifdef __NEXT_RUNTIME__
7 #import <Foundation/NSString.h>
8 #else
9 #include <objc/NXConstStr.h>
10 #endif
12 int main(int argc, void **args)
14   if (strcmp ([@"this is a string" cString], "this is a string"))
15     abort ();
16   return 0;