diff options
author | Roland McGrath <roland@redhat.com> | 1995-12-12 03:27:28 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1995-12-12 03:27:28 +0000 |
commit | bfa6ab6a0c37908f91a1bdffd66f678b461d04e5 (patch) | |
tree | 2c0d77a17f47bd2cc6b005bc6d1bc10e351a111d | |
parent | 4e6de57b8fec02cb77043b3d856cf40f2663f0c2 (diff) | |
download | gunmake-bfa6ab6a0c37908f91a1bdffd66f678b461d04e5.tar.gz |
(safe_stat): Function removed.
-rw-r--r-- | misc.c | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -734,23 +734,3 @@ get_path_max () return value; } #endif - -/* On some systems, stat can return EINTR. */ - -int -safe_stat (name, buf) - char *name; - struct stat *buf; -{ - int ret; - -#ifdef EINTR - do -#endif - ret = stat (name, buf); -#ifdef EINTR - while (ret < 0 && errno == EINTR); -#endif - - return ret; -} |