Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6433 siemargl 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 
9
#include 
10
 
11
const char m[8] = {'M','M','M','M','M','M','M','M'};
12
 
13
int main()
14
{
15
  printf ("%.*s\n", 8, m);  // must print MMMMMMMM
16
 
17
printf("%s finished\n", __FILE__);
18
 
19
  exit (0);
20
}