summaryrefslogtreecommitdiffstats
path: root/main/glib/atoi.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/glib/atoi.c')
-rw-r--r--main/glib/atoi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/glib/atoi.c b/main/glib/atoi.c
index de76b27..d3ecc0a 100644
--- a/main/glib/atoi.c
+++ b/main/glib/atoi.c
@@ -1,6 +1,6 @@
/*
* Copyright (c) 1988, 1993
- * The Regents of the University of California. All rights reserved.
+ * The Regents of the University of California. All rights reserved.
*
* Copyright (c) 2011 The FreeBSD Foundation
* All rights reserved.
@@ -38,5 +38,5 @@ int
atoi(str)
const char *str;
{
- return (int)strtol(str, (char **)NULL, 10);
+ return (int)strtol(str, (char **)NULL, 10);
}