2 * See the file LICENSE for redistribution information.
4 * Copyright (c) 1997, 1998
5 * Sleepycat Software. All rights reserved.
11 static const char sccsid
[] = "@(#)os_unlink.c 10.7 (Sleepycat) 10/12/98";
14 #ifndef NO_SYSTEM_INCLUDES
15 #include <sys/types.h>
28 * PUBLIC: int __os_unlink __P((const char *));
36 ret
= __db_jump
.j_unlink
!= NULL
?
37 __db_jump
.j_unlink(path
) : unlink(path
);
38 return (ret
== -1 ? errno
: 0);