HAMMER 60I/Many: Mirroring
[dragonfly.git] / contrib / opie / libmissing / getcwd.c
blob30ccdc0486dd6acfed644464e3f5d6c14282ead5
1 /* getcwd.c: A replacement for the getcwd function
3 %%% copyright-cmetz
4 This software is Copyright 1996 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 2 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
9 History:
11 Created by cmetz for OPIE 2.3.
13 #include "opie_cfg.h"
14 #include "opie.h"
16 char *getcwd FUNCTION((c, l), char *c AND int l)
18 #if HAVE_GETWD
19 return getwd(c);
20 #else /* HAVE_INDEX */
21 #error Need getwd() to build a replacement getcwd()
22 #endif /* HAVE_INDEX */