aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 8e3b7ae8e..6aeec249d 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -2292,7 +2292,7 @@ struct globals;
2292/* '*const' ptr makes gcc optimize code much better. 2292/* '*const' ptr makes gcc optimize code much better.
2293 * Magic prevents ptr_to_globals from going into rodata. 2293 * Magic prevents ptr_to_globals from going into rodata.
2294 * If you want to assign a value, use SET_PTR_TO_GLOBALS(x) */ 2294 * If you want to assign a value, use SET_PTR_TO_GLOBALS(x) */
2295extern struct globals *const ptr_to_globals; 2295extern struct globals *BB_GLOBAL_CONST ptr_to_globals;
2296 2296
2297#define barrier() asm volatile ("":::"memory") 2297#define barrier() asm volatile ("":::"memory")
2298 2298