mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-02 03:18:05 -04:00
34 lines
538 B
C
34 lines
538 B
C
/* wrapper.c -- implements wrapper.h */
|
|
|
|
#include "wrapper.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
static void die( const char *err) {
|
|
fprintf( stderr, "fatal: %s\n", err) ;
|
|
exit( EXIT_FAILURE) ;
|
|
}
|
|
|
|
/* Function copyright: git */
|
|
void xmkstemp( char *template) {
|
|
int fd ;
|
|
|
|
fd = mkstemp( template) ;
|
|
if( fd < 0)
|
|
die( "Unable to create temporary file") ;
|
|
|
|
close( fd) ;
|
|
}
|
|
|
|
void *xmalloc( size_t size) {
|
|
void *ret = malloc( size) ;
|
|
if( !ret)
|
|
die( "Out of memory") ;
|
|
|
|
return ret ;
|
|
}
|
|
|
|
/* end of wrapper.c */
|