tinc/lib/dropin.h

49 lines
1.4 KiB
C
Raw Normal View History

2000-11-24 23:30:50 +00:00
/*
dropin.h -- header file for dropin.c
Copyright (C) 2000-2005 Ivo Timmermans,
2000-2009 Guus Sliepen <guus@tinc-vpn.org>
2000-11-24 23:30:50 +00:00
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 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2000-11-24 23:30:50 +00:00
*/
#ifndef __DROPIN_H__
#define __DROPIN_H__
2000-11-24 23:30:50 +00:00
#include "fake-getaddrinfo.h"
#include "fake-getnameinfo.h"
2000-11-24 23:30:50 +00:00
#ifndef HAVE_DAEMON
extern int daemon(int, int);
#endif
#ifndef HAVE_GET_CURRENT_DIR_NAME
2002-09-09 21:49:16 +00:00
extern char *get_current_dir_name(void);
#endif
2001-11-05 19:06:07 +00:00
#ifndef HAVE_ASPRINTF
extern int asprintf(char **, const char *, ...);
extern int vasprintf(char **, const char *, va_list ap);
2001-11-05 19:06:07 +00:00
#endif
2003-07-29 22:59:01 +00:00
#ifndef HAVE_GETTIMEOFDAY
extern int gettimeofday(struct timeval *, void *);
#endif
#ifndef HAVE_USLEEP
2010-11-13 14:50:39 +00:00
extern int usleep(long);
#endif
2002-09-09 21:49:16 +00:00
#endif /* __DROPIN_H__ */