summaryrefslogtreecommitdiffstats
path: root/main/glib/abs.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/glib/abs.c')
-rw-r--r--main/glib/abs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/glib/abs.c b/main/glib/abs.c
index 8758947..9f1c637 100644
--- a/main/glib/abs.c
+++ b/main/glib/abs.c
@@ -1,6 +1,6 @@
/*-
* Copyright (c) 1990, 1993
- * The Regents of the University of California. All rights reserved.
+ * The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$");
int
abs(j)
- int j;
+int j;
{
- return(j < 0 ? -j : j);
+ return(j < 0 ? -j : j);
}