1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/linux-atm/qgen/common.h
2024-07-22 01:58:46 -03:00

24 lines
338 B
C
Executable File

/* common.h - Common definitions */
/* Written 1995,1996 by Werner Almesberger, EPFL-LRC */
#ifndef COMMON_H
#define COMMON_H
#include <sys/types.h>
#define alloc_t(t) ((t *) alloc(sizeof(t)))
extern int debug;
extern int dump;
void *alloc(size_t size);
char *stralloc(const char *str);
void die(const char *fmt,...);
#endif