source: trunk/libs/newlib/src/newlib/testsuite/newlib.stdio/nulprintf.c @ 543

Last change on this file since 543 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 340 bytes
Line 
1/*
2 * Copyright (C) 2014 by ARM Ltd. All rights reserved.
3 *
4 * Permission to use, copy, modify, and distribute this software
5 * is freely granted, provided that this notice is preserved.
6 */
7
8#include <stdio.h>
9#include "check.h"
10
11const char m[8] = {'M','M','M','M','M','M','M','M'};
12
13int main()
14{
15  printf ("%.*s\n", 8, m);
16  exit (0);
17}
Note: See TracBrowser for help on using the repository browser.