Move all sources to 'src/'
[lttng-ust.git] / snprintf / core.c
diff --git a/snprintf/core.c b/snprintf/core.c
deleted file mode 100644 (file)
index 8c4edde..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * SPDX-License-Identifier: LGPL-2.1-only
- *
- * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- */
-
-#include <usterr-signal-safe.h>
-
-volatile enum ust_err_loglevel ust_err_loglevel;
-
-void ust_err_init(void)
-{
-       char *ust_debug;
-
-       if (ust_err_loglevel == UST_ERR_LOGLEVEL_UNKNOWN) {
-               /*
-                * This getenv is not part of lttng_ust_getenv() because it
-                * is required to print ERR() performed during getenv
-                * initialization.
-                */
-               ust_debug = getenv("LTTNG_UST_DEBUG");
-               if (ust_debug)
-                       ust_err_loglevel = UST_ERR_LOGLEVEL_DEBUG;
-               else
-                       ust_err_loglevel = UST_ERR_LOGLEVEL_NORMAL;
-       }
-}
This page took 0.024965 seconds and 4 git commands to generate.