summaryrefslogtreecommitdiffstats
path: root/stream.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-01 20:56:34 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-01 20:56:34 -0700
commit89f85fd0fc4001088aa2ad4b795b1562702a8fee (patch)
treee10a62def9c7bd015a41eb432c7a4482a07e1916 /stream.h
parent91a829beb997a8338c19bb12a1f82f8fe977c724 (diff)
downloadtxr-89f85fd0fc4001088aa2ad4b795b1562702a8fee.tar.gz
txr-89f85fd0fc4001088aa2ad4b795b1562702a8fee.tar.bz2
txr-89f85fd0fc4001088aa2ad4b795b1562702a8fee.zip
Pre-release C++ upkeep.
* stream.c (mkdtemp_wrap): Rename template argument to prefix, because template is a C++ keyword. (mkstemp_wrap): Rename local variable from template to templ. * stream.h (mkdtemp_wrap): Rename template argument.
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.h b/stream.h
index cdfe9d8c..adf7cb7e 100644
--- a/stream.h
+++ b/stream.h
@@ -252,6 +252,6 @@ val iobuf_get(void);
void iobuf_put(val buf);
void iobuf_list_empty(void);
val tmpfile_wrap(void);
-val mkdtemp_wrap(val template);
+val mkdtemp_wrap(val prefix);
val mkstemp_wrap(val prefix, val suffix);
void stream_init(void);