#ifndef LLVM_LIBC_CONFIG_APP_H
#define LLVM_LIBC_CONFIG_APP_H
#include "src/__support/macros/properties/architectures.h"
#if defined(LIBC_TARGET_ARCH_IS_GPU)
#include "gpu/app.h"
#elif defined(__linux__)
#include "linux/app.h"
#elif defined(__UEFI__)
#include "uefi/app.h"
#endif
#endif