Live data from Hacker News

Viewing profile — db999999

db999999

HN member
Joined
Sun, Sep 07, 2014, 9:03 AM UTC
HN karma
1
Public activity
1 items

About db999999

No profile information was provided.

Recent public activity

  1. 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…