mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D4210 --HG-- extra : moz-landing-system : lando
6 lines
80 B
C++
6 lines
80 B
C++
#include "structures.h"
|
|
|
|
void test_bzero(void *a, size_t n) {
|
|
bzero(a, n);
|
|
}
|
|
|