18 lines
494 B
C
18 lines
494 B
C
/* common/util.h
|
|
*
|
|
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __COMMON_UTIL_H
|
|
#define __COMMON_UTIL_H
|
|
|
|
void die(const char *, ...);
|
|
|
|
void die_errno(const char *);
|
|
|
|
#endif /* __COMMOT_UTIL_H */
|