2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-08 08:50:50 +05:30
|
|
|
/* common.h
|
|
|
|
*
|
|
|
|
* Russ Dill <Russ.Dill@asu.edu> September 2001
|
|
|
|
* Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
|
|
|
|
*
|
2006-05-28 06:36:36 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2006-05-08 08:50:50 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COMMON_H
|
|
|
|
#define _COMMON_H
|
|
|
|
|
|
|
|
#include "libbb_udhcp.h"
|
|
|
|
|
|
|
|
long uptime(void);
|
|
|
|
|
2006-05-28 06:36:36 +05:30
|
|
|
#if ENABLE_FEATURE_UDHCP_DEBUG
|
2006-09-07 00:06:50 +05:30
|
|
|
# define DEBUG(str, args...) bb_info_msg(str, ## args)
|
2006-05-08 08:50:50 +05:30
|
|
|
#else
|
2006-09-07 00:06:50 +05:30
|
|
|
# define DEBUG(str, args...) do {;} while(0)
|
2006-05-08 08:50:50 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|