Major coreutils update.
[oweals/busybox.git] / libbb / messages.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
4  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  */
21
22 #include "busybox.h"
23 #include "libbb.h"
24
25 #ifdef L_full_version
26         const char * const bb_msg_full_version = BB_BANNER " multi-call binary";
27 #endif
28 #ifdef L_memory_exhausted
29         const char * const bb_msg_memory_exhausted = "memory exhausted";
30 #endif
31 #ifdef L_invalid_date
32         const char * const bb_msg_invalid_date = "invalid date `%s'";
33 #endif
34 #ifdef L_io_error
35         const char * const bb_msg_io_error = "%s: input/output error -- %m";
36 #endif
37 #ifdef L_write_error
38         const char * const bb_msg_write_error = "Write Error";
39 #endif
40 #ifdef L_name_longer_than_foo
41         const char * const bb_msg_name_longer_than_foo = "Names longer than %d chars not supported.";
42 #endif
43 #ifdef L_unknown
44         const char * const bb_msg_unknown = "(unknown)";
45 #endif
46 #ifdef L_can_not_create_raw_socket
47         const char * const bb_msg_can_not_create_raw_socket = "can`t create raw socket";
48 #endif
49 #ifdef L_perm_denied_are_you_root
50         const char * const bb_msg_perm_denied_are_you_root = "permission denied. (are you root?)";
51 #endif
52 #ifdef L_msg_standard_input
53         const char * const bb_msg_standard_input = "standard input";
54 #endif
55 #ifdef L_msg_standard_output
56         const char * const bb_msg_standard_output = "standard output";
57 #endif
58
59 #ifdef L_passwd_file
60 #define PASSWD_FILE        "/etc/passwd"
61 const char * const bb_path_passwd_file = PASSWD_FILE;
62 #endif
63
64 #ifdef L_shadow_file
65 #define SHADOW_FILE        "/etc/shadow"
66 const char * const bb_path_shadow_file = SHADOW_FILE;
67 #endif
68
69 #ifdef L_group_file
70 #define GROUP_FILE         "/etc/group"
71 const char * const bb_path_group_file = GROUP_FILE;
72 #endif
73
74 #ifdef L_gshadow_file
75 #define GSHADOW_FILE       "/etc/gshadow"
76 const char * const bb_path_gshadow_file = GSHADOW_FILE;
77 #endif
78
79 #ifdef L_nologin_file
80 #define NOLOGIN_FILE       "/etc/nologin"
81 const char * const bb_path_nologin_file = NOLOGIN_FILE;
82 #endif
83
84 #ifdef L_securetty_file
85 #define SECURETTY_FILE     "/etc/securetty"
86 const char * const bb_path_securetty_file = SECURETTY_FILE;
87 #endif
88
89 #ifdef L_motd_file
90 #define MOTD_FILE          "/etc/motd"
91 const char * const bb_path_motd_file = MOTD_FILE;
92 #endif
93