summaryrefslogtreecommitdiff
path: root/test cases/osx/10 global variable ar/libfile.c
blob: b258d7b8250f1f4d2dc3bcadf2e38f799be4caeb (plain)
1
2
3
4
5
6
7
8
9
// Source: https://lists.gnu.org/archive/html/libtool/2002-07/msg00025.html

#include <stdio.h>

extern int l2;
void l1(void)
{
  printf("l1 %d\n", l2);
}