1169689Skan/* Copyright 2012-2020 Free Software Foundation, Inc.
2169689Skan
3169689Skan   This program is free software; you can redistribute it and/or modify
4169689Skan   it under the terms of the GNU General Public License as published by
5169689Skan   the Free Software Foundation; either version 3 of the License, or
6169689Skan   (at your option) any later version.
7169689Skan
8169689Skan   This program is distributed in the hope that it will be useful,
9169689Skan   but WITHOUT ANY WARRANTY; without even the implied warranty of
10169689Skan   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11169689Skan   GNU General Public License for more details.
12169689Skan
13169689Skan   You should have received a copy of the GNU General Public License
14169689Skan   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
15169689Skan
16169689Skan#include <stdio.h>
17169689Skan
18169689Skanint
19169689Skanfoo (int n)
20169689Skan{
21169689Skan  printf ("foo %d\n", n);
22169689Skan
23169689Skan  return 0;
24169689Skan}
25169689Skan