blob: 051271ec703d0e68ed134587dd2e02fa8db4f798 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "lib2.h"
#include <lib1.h>
#include <stdio.h>
#define tr(STRING) (STRING)
void say_something_else(void)
{
say_something();
printf("%s\n", tr("Something else!"));
}
|