summaryrefslogtreecommitdiff
path: root/Tests/LibELF/Dynlib.cpp
blob: 4187378fd1a22a017292b15453fce89bed955fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2021, Rodrigo Tobar <rtobarc@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibLine/Span.h>

extern "C" {
int FUNCTION();
int FUNCTION()
{
    return (int)Line::Span(0, 0).beginning();
}
}