From f57c944e09417edcbcd69f2b01b937cadef39db2 Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Thu, 7 Dec 2000 19:56:48 +0000 Subject: Changed names of functions in utility.c and all affected files, to make compliant with the style guide. Everybody rebuild your tags file! --- pwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pwd.c') diff --git a/pwd.c b/pwd.c index 54129b175..71731944c 100644 --- a/pwd.c +++ b/pwd.c @@ -31,7 +31,7 @@ extern int pwd_main(int argc, char **argv) char buf[BUFSIZ + 1]; if (getcwd(buf, sizeof(buf)) == NULL) - fatalError("%s\n", strerror(errno)); + error_msg_and_die("%s\n", strerror(errno)); printf("%s\n", buf); return EXIT_SUCCESS; -- cgit v1.2.3