mirror of
https://github.com/anope/anope.git
synced 2026-06-25 13:16:38 +02:00
d4af97a7a7
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2699 5417fbe8-f217-4b02-8779-1006273d7864
26 lines
468 B
C
26 lines
468 B
C
/* Database file descriptor structure and file handling routine prototypes.
|
|
*
|
|
* (C) 2003-2009 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for furhter details.
|
|
*
|
|
* Based on the original code of Epona by Lara.
|
|
* Based on the original code of Services by Andy Church.
|
|
*
|
|
* $Id$
|
|
*
|
|
*/
|
|
|
|
#ifndef DATAFILES_H
|
|
#define DATAFILES_H
|
|
|
|
#ifndef _WIN32
|
|
#include <sys/param.h>
|
|
#define DeleteFile unlink
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* DATAFILES_H */
|