summaryrefslogtreecommitdiff
path: root/reentr.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-08-01 16:49:20 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-08-01 16:49:20 +0000
commit61296642cbf8fa29a8af855294fd11d2d43e79d5 (patch)
tree604861edc68f90430c0473ff78d5fa5abc65efbe /reentr.c
parent1f616d559fcb84901480199144ce9065d098670b (diff)
downloadperl-61296642cbf8fa29a8af855294fd11d2d43e79d5.tar.gz
Add comment to top of reentr.c and fix typos in other files
p4raw-id: //depot/perl@23180
Diffstat (limited to 'reentr.c')
-rw-r--r--reentr.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/reentr.c b/reentr.c
index 493a3b5c62..c2972e0e07 100644
--- a/reentr.c
+++ b/reentr.c
@@ -7,11 +7,17 @@
* License or the Artistic License, as specified in the README file.
*
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
- * This file is built by reentrl.pl from data in reentr.pl.
+ * This file is built by reentr.pl from data in reentr.pl.
*
* "Saruman," I said, standing away from him, "only one hand at a time can
* wield the One, and you know that well, so do not trouble to say we!"
*
+ * This file contains a collection of automatically created wrappers
+ * (created by running reentr.pl) for reentrant (thread-safe) versions of
+ * various library calls, such as getpwent_r. The wrapping is done so
+ * that other files like pp_sys.c calling those library functions need not
+ * care about the differences between various platforms' idiosyncrasies
+ * regarding these reentrant interfaces.
*/
#include "EXTERN.h"