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

int ws(const struct lex *l, struct prv *p)
{
    struct ast *ast = p->ast;
    struct fn *fn = &ast->fns[ast->nfns - 1];

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