forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D4210 --HG-- extra : moz-landing-system : lando
5 lines
95 B
C++
5 lines
95 B
C++
#include "structures.h"
|
|
|
|
int test_bcmp(void *a, void *b, size_t n) {
|
|
return bcmp(a, b, n);
|
|
}
|