summaryrefslogtreecommitdiff
path: root/lib/nedf2.c
blob: db069460274593f8f26d23272b5b50dc67674bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//===-- lib/nedf2.c - Double-precision comparisons ----------------*- C -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#define DOUBLE_PRECISION
#include "fp_lib.h"

enum LE_RESULT __ledf2(fp_t a, fp_t b);
enum LE_RESULT __nedf2(fp_t a, fp_t b) {
    return __ledf2(a, b);
}