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_abs.c 10.9 (Sleepycat) 7/21/98";
14 #ifndef NO_SYSTEM_INCLUDES
15 #include <sys/types.h>
22 * Return if a path is an absolute path.
24 * PUBLIC: int __os_abspath __P((const char *));
30 return (path
[0] == '/');