mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-01-11 23:53:19 +00:00
12 lines
146 B
C
12 lines
146 B
C
/*
|
|
* emalloc.h
|
|
*/
|
|
#ifndef EMALLOC_H
|
|
#define EMALLOC_H
|
|
|
|
#include <stddef.h> /* size_t */
|
|
|
|
void *emalloc(size_t nrbytes);
|
|
|
|
#endif /* EMALLOC_H */
|