mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
11 lines
156 B
C
11 lines
156 B
C
#ifndef WRAPPER_H_
|
|
#define WRAPPER_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
void xmkstemp( char *fname_template) ;
|
|
|
|
void *xmalloc( size_t size) ;
|
|
|
|
#endif /* WRAPPER_H_ */
|