diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-10-23 12:13:47 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-10-23 12:13:47 +0300 |
commit | e33df8585205539f5b61298200863a4ca5d9b041 (patch) | |
tree | 5db1a90aed3a8c102a74047af0849f5a443f886c /posix/gawkmisc.c | |
parent | 341a029b67d6f35c6b6c0fbce0fafca359247e9b (diff) | |
parent | 3055361c2a022c9ac9ae42ac88c00e3055498a0d (diff) | |
download | egawk-e33df8585205539f5b61298200863a4ca5d9b041.tar.gz egawk-e33df8585205539f5b61298200863a4ca5d9b041.tar.bz2 egawk-e33df8585205539f5b61298200863a4ca5d9b041.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'posix/gawkmisc.c')
-rw-r--r-- | posix/gawkmisc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/gawkmisc.c b/posix/gawkmisc.c index d422bd0f..40950826 100644 --- a/posix/gawkmisc.c +++ b/posix/gawkmisc.c @@ -1,5 +1,5 @@ /* gawkmisc.c --- miscellaneous gawk routines that are OS specific. - + Copyright (C) 1986, 1988, 1989, 1991 - 1998, 2001 - 2004, 2011 the Free Software Foundation, Inc. @@ -40,7 +40,7 @@ char * gawk_name(const char *filespec) { char *p; - + /* "path/name" -> "name" */ p = strrchr(filespec, '/'); return (p == NULL ? (char *) filespec : p + 1); @@ -272,7 +272,7 @@ os_isatty(int fd) { return isatty(fd); } - + /* files_are_same --- return true if files are identical */ int |