/* $Id: nbcompat.h,v 1.1.1.1 2004/05/03 15:50:58 imil Exp $ */ #ifdef _NBCOMPAT_H #define _NBCOMPAT_H #ifdef __NetBSD__ #define timeout_set(a, b, c) callout_init(a); \ callout_setfunc(a, b, c) #define timeout_add(a, b) callout_schedule(a, b) #define timeout_del(a) callout_stop(a) #endif #endif