mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-19 02:56:08 -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_ */
|