add prototypes for some functions --> "cmproto.h"

This commit is contained in:
rlar 2010-10-15 18:38:00 +00:00
parent 47d271d0c0
commit ce014b3eb5
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2010-10-15 Robert Larice
* src/include/cmproto.h :
add prototypes for some functions --> "cmproto.h"
cm_stream_out() cm_stream_in(v) cm_stream_err()
malloc_pj() calloc_pj() realloc_pj() free_pj()
2010-10-15 Robert Larice
* src/xspice/icm/xtraevt/int/udnfunc.c ,
* src/xspice/icm/xtraevt/real/udnfunc.c :

View File

@ -45,6 +45,7 @@ NON-STANDARD FEATURES
/* 12/17/90 */
#include <stdio.h>
#include "cmtypes.h"
@ -92,4 +93,13 @@ Complex_t cm_complex_subtract(Complex_t x, Complex_t y);
Complex_t cm_complex_multiply(Complex_t x, Complex_t y);
Complex_t cm_complex_divide(Complex_t x, Complex_t y);
FILE *cm_stream_out(void);
FILE *cm_stream_in(void);
FILE *cm_stream_err(void);
void *malloc_pj(size_t s);
void *calloc_pj(size_t s1, size_t s2);
void *realloc_pj(void *ptr, size_t s);
void free_pj(void *ptr);
#endif /* CMPROTO_DEFINED */