heapbuf           114 maint/gnulib/tests/test-explicit_bzero.c   char *heapbuf = (char *) malloc (SECRET_SIZE);
heapbuf           115 maint/gnulib/tests/test-explicit_bzero.c   uintptr_t addr = (uintptr_t) heapbuf;
heapbuf           116 maint/gnulib/tests/test-explicit_bzero.c   memcpy (heapbuf, SECRET, SECRET_SIZE);
heapbuf           117 maint/gnulib/tests/test-explicit_bzero.c   explicit_bzero (heapbuf, SECRET_SIZE);
heapbuf           118 maint/gnulib/tests/test-explicit_bzero.c   free (heapbuf);
heapbuf           123 maint/gnulib/tests/test-explicit_bzero.c       ASSERT (memcmp (heapbuf, SECRET, SECRET_SIZE) != 0);