summaryrefslogtreecommitdiff
path: root/tests/test_memset_null.c
blob: 0a2398b030eece9c395ba122bf186202247669e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "common.h"

#include <string.h>

int main(int argc, char** argv) {
#ifndef __GNUC__
  CHK_FAIL_START
  memset(NULL, 0, 0);
  CHK_FAIL_END
#endif

  return ret;
}