summaryrefslogtreecommitdiffstats
path: root/misc/applib/file_1.c
blob: c2a1fe2c47e3d8b4ca2a41968f71d2d24e1ea70e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 *  Example library file
 */

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

void example_library_function(
  int x
)
{
  printf( "example_library_function(%d)\n", x );
}