randomconfig fixes
[platform/upstream/busybox.git] / coreutils / pwd.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini pwd implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8  */
9
10 //usage:#define pwd_trivial_usage
11 //usage:       ""
12 //usage:#define pwd_full_usage "\n\n"
13 //usage:       "Print the full filename of the current working directory"
14 //usage:
15 //usage:#define pwd_example_usage
16 //usage:       "$ pwd\n"
17 //usage:       "/root\n"
18
19 #include "libbb.h"
20
21 /* This is a NOFORK applet. Be very careful! */
22
23 int pwd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
24 int pwd_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
25 {
26         char *buf;
27
28         buf = xrealloc_getcwd_or_warn(NULL);
29         if (buf != NULL) {
30                 puts(buf);
31                 free(buf);
32                 return fflush_all();
33         }
34
35         return EXIT_FAILURE;
36 }