mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-17 18:16:22 -05:00
Renaud Fivet
f0874a8497
Fix wrapper.h mode. Silence warning of unused return value of system() in spawn.
11 lines
150 B
C
11 lines
150 B
C
#ifndef WRAPPER_H_
|
|
#define WRAPPER_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
void xmkstemp( char *template) ;
|
|
|
|
void *xmalloc( size_t size) ;
|
|
|
|
#endif /* WRAPPER_H_ */
|