Viewing profile — fluntcaps
fluntcaps
HN member- Joined
- Fri, Feb 27, 2026, 8:25 PM UTC
- HN karma
- 4
- Public activity
- 1 items
- HN profile
- View on Hacker News ↗
About fluntcaps
No profile information was provided.
Recent public activity
-
comment
Comment #47185113
You can do something like: void *get_sp(void) { volatile char c; return (void *)&c; } Or, in GCC and Clang: void *get_sp(void) { return __builtin_frame_address(0); } Which gets you…