mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-15 17:16:48 -05:00
11 lines
150 B
C
Executable File
11 lines
150 B
C
Executable File
#ifndef WRAPPER_H_
|
|
#define WRAPPER_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
void xmkstemp( char *template) ;
|
|
|
|
void *xmalloc( size_t size) ;
|
|
|
|
#endif /* WRAPPER_H_ */
|