aboutsummaryrefslogtreecommitdiff
path: root/lk.c
blob: 8bfb738c524bbae7a143981a7baeacc8339fe72c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "lk.h"
#include "fn.h"
#include "prv.h"
#include "parse.h"
#include "storage.h"

int lk(const struct lex *l, struct prv *p)
{
    struct fn *fn = fn_cur(p);

    return storage(l, p, "linkage section", 1, &fn->lk);
}