Viewing profile — db999999
db999999
HN member- Joined
- Sun, Sep 07, 2014, 9:03 AM UTC
- HN karma
- 1
- Public activity
- 1 items
- HN profile
- View on Hacker News ↗
About db999999
No profile information was provided.
Recent public activity
-
comment
Comment #8280626
Try: #include void bar(void *s, size_t count) { memset(s, 0, count); __asm__ ("" : "=r" (s) : "0" (s)); } int main(void) { char foo[128]; bar(foo, sizeof(foo)); return 0; } gcc -O2…