packages feed

llvm-party-12.1.0: src/LLVM/Internal/FFI/CommandLineC.cpp

#define __STDC_LIMIT_MACROS
#include "llvm/Support/CommandLine.h"

using namespace llvm;

extern "C" {

void LLVM_Hs_ParseCommandLineOptions(unsigned argc, const char * const *argv, const char *overview) {
	cl::ParseCommandLineOptions(argc, argv, overview);
}

}