aboutsummaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-21 15:57:40 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-21 15:57:40 +0100
commit03f2e59365a51b280c63549965d0c30766dddad9 (patch)
tree53baf495f409a736b366f4dd3fb2b1463c0e7e9c /include/stdlib.h
parentin case environ is set to null (diff)
downloadslibc-03f2e59365a51b280c63549965d0c30766dddad9.tar.gz
slibc-03f2e59365a51b280c63549965d0c30766dddad9.tar.bz2
slibc-03f2e59365a51b280c63549965d0c30766dddad9.tar.xz
add clearenv
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r--include/stdlib.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 3229384..ebfb5e2 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -288,6 +288,49 @@ long long int atoq(const char*)
#endif
+#if !defined(__PORTABLE)
+/**
+ * This function is identical to `atoll`.
+ *
+ * This is a Linux libc extension.
+ *
+ * @since Always.
+ */
+long long int atoq(const char*)
+ __deprecated("'atoq' is obsolete and not portable, use 'atoll' instead.")
+ __GCC_ONLY(__attribute__((__warn_unused_result__, __nonnull__)));
+#endif
+
+
+#if defined(__SVID_SOURCE) || defined(__BSD_SOURCE)
+/**
+ * This function shall in some manner clear the environment.
+ *
+ * To minimise the risk of fatal race conditions, this
+ * implementation will set the first element in
+ * `extern char** environ` to `NULL`, unless `environ`
+ * itself is `NULL`. This also reduces that risk that
+ * programs stop working when switching to slibc.
+ *
+ * The exact behaviour of this function depeneds of the
+ * implementations. Depending on the implementation,
+ * this may or may not entail setting `environ` to `NULL`.
+ *
+ * This function is a very common non-standard extension.
+ *
+ * @etymology (Clear) the (env)ironment!
+ *
+ * @returns This function is always successful, and will
+ * always return zero. However, according to the
+ * specifications, it shall return -1 on failure.
+ *
+ * @since Always.
+ */
+int clearenv(void)
+ __warning("It may be better to use `if (environ) *environ = NULL;`.");
+#endif
+
+
/* TODO implement rand-functions */
#define RAND_MAX 1