summaryrefslogtreecommitdiff
path: root/tests/test_sprintf.c
blob: edde838f6bf28d0a10d0dc00ced1c2eeee45ee17 (plain)
1
2
3
4
5
6
7
8
#include "common.h"

#include <stdio.h>

int main(int argc, char** argv) {
  char buffer[12] = {0};
  sprintf(buffer, "%s", "1234567");
}