this repo has no description
1/* This file makes it possible to compile the nanl implementation for
2 64-bit long double by providing a separate source file which Xcode can be
3 told to use the -mlong-double-64 switch with.
4
5 Including "nanl.c" defines nanl. We also define the synonym nanl$LDBL64.
6*/
7
8#include "nanl.c"
9
10asm (".text \n .globl _nanl$LDBL64 \n _nanl$LDBL64: b _nanl");