00001 /* 00002 * Copyright (c) 2005-2012 by KoanLogic s.r.l. - All rights reserved. 00003 */ 00004 #ifndef _LIBU_UNLINK_H_ 00005 #define _LIBU_UNLINK_H_ 00006 #include <u/libu_conf.h> 00007 00008 #ifdef HAVE_UNLINK 00009 #include <unistd.h> 00010 #else 00011 00012 #ifdef __cplusplus 00013 extern "C" { 00014 #endif 00015 00016 int unlink(const char *pathname); 00017 00018 #ifdef __cplusplus 00019 } 00020 #endif 00021 00022 #endif 00023 00024 #endif