2020-10-17 08:39:36 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-10-17 08:39:36 -03:00
|
|
|
*/
|
|
|
|
|
|
2020-10-10 12:26:16 -03:00
|
|
|
#include <AK/Types.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <sys/internals.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2021-04-17 13:38:32 -03:00
|
|
|
#ifndef _DYNAMIC_LOADER
|
2020-10-17 08:39:36 -03:00
|
|
|
void* __dso_handle __attribute__((__weak__));
|
2021-04-17 13:38:32 -03:00
|
|
|
#endif
|