From e633f3b51c573be2d8a6d6c58acfea55c921aa58 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 31 Jan 2014 11:03:24 -0600 Subject: posix/*.c: Remove use of register keyword --- cpukit/posix/src/semclose.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/posix/src/semclose.c') diff --git a/cpukit/posix/src/semclose.c b/cpukit/posix/src/semclose.c index 2b7eb4a487..f85c199126 100644 --- a/cpukit/posix/src/semclose.c +++ b/cpukit/posix/src/semclose.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -35,7 +35,7 @@ int sem_close( sem_t *sem ) { - register POSIX_Semaphore_Control *the_semaphore; + POSIX_Semaphore_Control *the_semaphore; Objects_Locations location; the_semaphore = _POSIX_Semaphore_Get( sem, &location ); -- cgit v1.2.3