float.h 991 Bytes
Newer Older
Kevin Modzelewski's avatar
Kevin Modzelewski committed
1
// Copyright (c) 2014 Dropbox, Inc.
Kevin Modzelewski's avatar
Kevin Modzelewski committed
2
//
Kevin Modzelewski's avatar
Kevin Modzelewski committed
3 4 5
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
Kevin Modzelewski's avatar
Kevin Modzelewski committed
6
//
Kevin Modzelewski's avatar
Kevin Modzelewski committed
7
//    http://www.apache.org/licenses/LICENSE-2.0
Kevin Modzelewski's avatar
Kevin Modzelewski committed
8
//
Kevin Modzelewski's avatar
Kevin Modzelewski committed
9 10 11 12 13 14 15 16 17
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef PYSTON_RUNTIME_FLOAT_H
#define PYSTON_RUNTIME_FLOAT_H

18 19
namespace pyston {

Kevin Modzelewski's avatar
Kevin Modzelewski committed
20 21
extern "C" double mod_float_float(double lhs, double rhs);
extern "C" double div_float_float(double lhs, double rhs);
Travis Hance's avatar
Travis Hance committed
22
extern "C" double floordiv_float_float(double lhs, double rhs);
Kevin Modzelewski's avatar
Kevin Modzelewski committed
23 24
extern "C" double pow_float_float(double lhs, double rhs);

25
class BoxedFloat;
26
bool floatNonzeroUnboxed(BoxedFloat* self);
27 28
}

Kevin Modzelewski's avatar
Kevin Modzelewski committed
29
#endif