Add copy of .ttf font with .eot extension for testing
[wine-gecko.git] / xpcom / tests / static-checker / onull.cpp
blob2c739e5b1e2220c88c1bbad82f05ff4a172e091b
1 typedef int PRUint32;
2 typedef PRUint32 nsresult;
4 char *pseudomalloc();
6 nsresult foo(char **result)
8 *result = pseudomalloc();
9 if (!*result)
10 return 1;
12 // fill in *result
14 return 0;