Annotation of OpenXM/src/ox_gsl/ox_gsl.h, Revision 1.3
1.3 ! takayama 1: /* $OpenXM: OpenXM/src/ox_gsl/ox_gsl.h,v 1.2 2018/03/30 04:43:17 takayama Exp $
1.1 takayama 2: */
3: // Todo, misc-2017/A3/kanazawa/ox_gsl.h.for_obj
1.3 ! takayama 4: #include <fcntl.h>
! 5: #include <unistd.h>
! 6: #include <string.h>
1.2 takayama 7: #include "gmp.h"
8: #include "gmp-impl.h"
1.1 takayama 9: #include "ox_toolkit.h"
10:
11: int sm_mathcap();
12: int sm_popCMO();
13: int get_i();
14: int sm_executeFunction();
15: int receive_and_execute_sm_command();
16: int receive();
17: int main();
18:
19: double get_double();
20: double *get_double_list(int *length);
21:
22: void init_gc();
1.2 takayama 23: void *gc_realloc(void *p,size_t osize,size_t nsize);
24: void gc_free(void *p,size_t size);
1.1 takayama 25: void pops(int n);
26: void show_double_list();
27: void usr1_handler(int sig);
28: void show_stack_top();
29: void initialize_stack();
30: void push(cmo* m);
31: void get_xy(int *x, int *y);
32: void my_add_int32();
33: void my_add_double();
1.2 takayama 34: void restart();
35: void push_error_from_file();
36: void myhandler(const char *reason,const char *file,int line, int gsl_errno);
1.1 takayama 37:
38: char *get_string();
1.2 takayama 39:
1.1 takayama 40: cmo *pop();
1.2 takayama 41: cmo *make_error2(const char *reason,const char *fname,int line,int code);
1.3 ! takayama 42:
! 43: int myfopen_w(char *fname);
! 44: int myfputs(int fd,const char *s);
! 45: int myfclose(int fd);
! 46:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>