9 lines
198 B
C
9 lines
198 B
C
|
|
#include <stdio.h>
|
||
|
|
/* gcc -shared -nostartfiles fakeimglib.c -o fakeimglib.so */
|
||
|
|
int openimage(const char *s)
|
||
|
|
{
|
||
|
|
static int handle = 100;
|
||
|
|
fprintf(stderr, "opening %s\n", s);
|
||
|
|
return handle++;
|
||
|
|
}
|