aboutsummaryrefslogtreecommitdiff
path: root/src/intobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/intobject.h')
-rw-r--r--src/intobject.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/intobject.h b/src/intobject.h
index 8a5330d..f9938f3 100644
--- a/src/intobject.h
+++ b/src/intobject.h
@@ -2,12 +2,12 @@
Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
Netherlands.
- All Rights Reserved
+ All Rights Reserved
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in
+both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission.
@@ -27,11 +27,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/*
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
-intobject represents a (long) integer. This is an immutable object;
+intobject represents a (long) integer. This is an immutable object;
an integer cannot change its value after creation.
There are functions to create new integer objects, to test an object
-for integer-ness, and to get the integer value. The latter functions
+for integer-ness, and to get the integer value. The latter functions
returns -1 and sets errno to EBADF if the object is not an intobject.
None of the functions should be applied to nil objects.
@@ -40,8 +40,8 @@ TrueObject and FalseObject below; don't use this.
*/
typedef struct {
- OB_HEAD
- long ob_ival;
+ OB_HEAD
+ long ob_ival;
} intobject;
extern typeobject Inttype;