Remove deprecated 'register' storage spec

This commit is contained in:
Chris Pavlina 2016-09-30 02:02:37 -04:00
parent b9abcc309f
commit 278ee7da7d
1 changed files with 6 additions and 1 deletions

View File

@ -33,6 +33,11 @@
* Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311.
* *
* OpenGL(TM) is a trademark of Silicon Graphics, Inc. * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
*
* ====================================================================
* Code in this file has been modified by the KiCad project.
* For modifications:
* Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors.
*/ */
/* /*
* Trackball code: * Trackball code:
@ -90,7 +95,7 @@ void vsub( const double *src1, const double *src2, double *dst )
void vcopy( const double *v1, double *v2 ) void vcopy( const double *v1, double *v2 )
{ {
register int i; int i;
for( i = 0 ; i < 3 ; i++ ) for( i = 0 ; i < 3 ; i++ )
v2[i] = v1[i]; v2[i] = v1[i];