Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nulprintf.c « newlib.stdio « testsuite « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e4131bc481f4a8c873021811d0379cd340cf5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (C) 2014 by ARM Ltd. All rights reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * is freely granted, provided that this notice is preserved.
 */

#include <stdio.h>
#include "check.h"

const char m[8] = {'M','M','M','M','M','M','M','M'};

int main()
{
  printf ("%.*s\n", 8, m);
  exit (0);
}