Forgot externs before JS_PUBLIC_API calls for ArgumentFormatter functions.

This commit is contained in:
brendan%netscape.com 1999-06-29 00:20:21 +00:00
parent b3251b9c81
commit e7941a0a33

View File

@ -233,11 +233,11 @@ JS_PopArguments(JSContext *cx, void *mark);
* is typically a string constant. If format is in dynamic storage, it is up
* to the caller to keep the string alive until Remove is called.
*/
JS_PUBLIC_API(JSBool)
extern JS_PUBLIC_API(JSBool)
JS_AddArgumentFormatter(JSContext *cx, const char *format,
JSArgumentFormatter formatter);
JS_PUBLIC_API(void)
extern JS_PUBLIC_API(void)
JS_RemoveArgumentFormatter(JSContext *cx, const char *format);
#endif /* JS_ARGUMENT_FORMATTER_DEFINED */