Displaying 1 result from an estimated 1 matches for "mylib_h".
Did you mean:
mylib_2
2008 Oct 17
1
[LLVMdev] [Need your help]
...amp;nbsp; printf("call mylib function gt fail!\n");
}
return 0;
}
mylib.h:
------------------------
#ifndef MYLIB_H
#define MYLIB_H
int gt(int *len);
#endif
mylib.c :
------------------------
#include<stdio.h>
#include<string.h>
#include"mylib.h"
int gt( int *length){
int len;
&...