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

#include <stdio.h>

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