mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
5 lines
79 B
C++
5 lines
79 B
C++
#include "structures.h"
|
|
|
|
void test_bzero(void *a, size_t n) {
|
|
bzero(a, n);
|
|
}
|