summaryrefslogtreecommitdiffstats
path: root/gnu/lib/libg++/include/builtin.h
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 05:05:38 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 05:05:38 +0000
commit2ad6f3dee6bc54535003f4ab26bbc587b7efa38c (patch)
treea3959baf797787918878bec6d58d6a0fb743ad0a /gnu/lib/libg++/include/builtin.h
parent4f960dd75f181e9fa2edc44324f15f0ab5c64b37 (diff)
downloadFreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.zip
FreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'gnu/lib/libg++/include/builtin.h')
-rw-r--r--gnu/lib/libg++/include/builtin.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/lib/libg++/include/builtin.h b/gnu/lib/libg++/include/builtin.h
index 73bb431..e2d7bce 100644
--- a/gnu/lib/libg++/include/builtin.h
+++ b/gnu/lib/libg++/include/builtin.h
@@ -1,6 +1,6 @@
// This may look like C code, but it is really -*- C++ -*-
-/*
+/*
Copyright (C) 1988, 1992 Free Software Foundation
written by Doug Lea (dl@rocky.oswego.edu)
@@ -42,7 +42,7 @@ typedef void (*one_arg_error_handler_t)(const char*);
typedef void (*two_arg_error_handler_t)(const char*, const char*);
long gcd(long, long);
-long lg(unsigned long);
+long lg(unsigned long);
double pow(double, long);
long pow(long, long);
@@ -60,30 +60,30 @@ extern _VOLATILE_VOID default_two_arg_error_handler(const char*, const char*);
extern two_arg_error_handler_t lib_error_handler;
-extern two_arg_error_handler_t
+extern two_arg_error_handler_t
set_lib_error_handler(two_arg_error_handler_t f);
#if !defined(IV)
#if ! _G_MATH_H_INLINES /* hpux and SCO define this in math.h */
-inline double abs(double arg)
+inline double abs(double arg)
{
return (arg < 0.0)? -arg : arg;
}
#endif
-inline float abs(float arg)
+inline float abs(float arg)
{
return (arg < 0.0)? -arg : arg;
}
-inline short abs(short arg)
+inline short abs(short arg)
{
return (arg < 0)? -arg : arg;
}
-inline long abs(long arg)
+inline long abs(long arg)
{
return (arg < 0)? -arg : arg;
}
OpenPOWER on IntegriCloud