aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-6/lib/lib.c
blob: 5dcae0de3d01d179e1af964a51eeb407a12ba135 (plain)
1
2
3
4
5
6
7
8
9
10
#include "lib.h"

#ifndef CRUCIAL_DEFINE
#   error CRUCIAL_DEFINE not defined
#endif

const char *get_string()
{
    return "Hello from library";
}