mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
19 lines
316 B
C
19 lines
316 B
C
/* -*- Mode: C; tab-width: 8 -*-
|
|
* Copyright (C) 1998 Netscape Communications Corporation, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef jsmath_h___
|
|
#define jsmath_h___
|
|
/*
|
|
* JS math functions.
|
|
*/
|
|
|
|
JS_BEGIN_EXTERN_C
|
|
|
|
extern JSObject *
|
|
js_InitMathClass(JSContext *cx, JSObject *obj);
|
|
|
|
JS_END_EXTERN_C
|
|
|
|
#endif /* jsmath_h___ */
|