summaryrefslogtreecommitdiff
path: root/libports/init.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-03-31 23:06:45 +0000
committerRoland McGrath <roland@gnu.org>2001-03-31 23:06:45 +0000
commit6e6cf5ec0d5050697976185685111aa9b89be5d7 (patch)
treee0109b983cc0bba77ace67c74f79024b867e789a /libports/init.c
parentb5a4fc2bc5ee18907945cb5cd9eb792dc4f4b19e (diff)
2001-03-29 Neal H Walfield <neal@cs.uml.edu>
* init.c: Do not initialize global variables to 0. * interrupt-notified-rpcs.c: Likewise.
Diffstat (limited to 'libports/init.c')
-rw-r--r--libports/init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libports/init.c b/libports/init.c
index 44c8bdd4..7d4d16fd 100644
--- a/libports/init.c
+++ b/libports/init.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1995 Free Software Foundation, Inc.
+ Copyright (C) 1995, 2001 Free Software Foundation, Inc.
Written by Michael I. Bushnell.
This file is part of the GNU Hurd.
@@ -23,6 +23,6 @@
struct mutex _ports_lock = MUTEX_INITIALIZER;
struct condition _ports_block = CONDITION_INITIALIZER;
-struct port_bucket *_ports_all_buckets = 0;
-int _ports_total_rpcs = 0;
-int _ports_flags = 0;
+struct port_bucket *_ports_all_buckets;
+int _ports_total_rpcs;
+int _ports_flags;