summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/findfp.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-11-19 04:19:56 +0000
committerguenther <guenther@openbsd.org>2014-11-19 04:19:56 +0000
commitbeef90273666986abb7f131740f5a35e1b1edd18 (patch)
treefaa514132e16036825ab126f7bfb3f6a8d1cf3a5 /lib/libc/stdio/findfp.c
parentremove duplicate publication year; carsten dot kunze at arcor dot de (diff)
downloadwireguard-openbsd-beef90273666986abb7f131740f5a35e1b1edd18.tar.xz
wireguard-openbsd-beef90273666986abb7f131740f5a35e1b1edd18.zip
abort() doesn't call atexit handlers any more
Diffstat (limited to 'lib/libc/stdio/findfp.c')
-rw-r--r--lib/libc/stdio/findfp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c
index 3594369bf9d..3e5b387bbb2 100644
--- a/lib/libc/stdio/findfp.c
+++ b/lib/libc/stdio/findfp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: findfp.c,v 1.15 2013/12/17 16:33:27 deraadt Exp $ */
+/* $OpenBSD: findfp.c,v 1.16 2014/11/19 04:19:56 guenther Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -141,7 +141,7 @@ found:
}
/*
- * exit() and abort() call _cleanup() through the callback registered
+ * exit() calls _cleanup() through the callback registered
* with __atexit_register_cleanup(), set whenever we open or buffer a
* file. This chicanery is done so that programs that do not use stdio
* need not link it all in.