Ignore:
Timestamp:
Mar 11, 2000, 4:07:48 PM (25 years ago)
Author:
sandervl
Message:

compile fixes + cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/glut/glut_term.c

    r3079 r3083  
    1 /* $Id: glut_term.c,v 1.3 2000-03-11 09:05:05 jeroen Exp $ */
     1/* $Id: glut_term.c,v 1.4 2000-03-11 15:07:45 sandervl Exp $ */
    22/*
    33 * GLUT Termination - on exit cleanup any open windows
     
    55*/
    66
    7 #include <odinwrap.h>
    87#include "glut.h"
    98#include "glu.h"
    109#include "glutint.h"
    11 
     10#ifdef __WIN32OS2__
     11#include <misc.h>
     12#endif
    1213
    1314void CDECL Glut32Terminate(void)
    1415{
     16 int i;
     17
    1518      /* Our app has ended - close all the open windows! */
    1619      dprintf(("GLUT internal cleanup - numwins %d\n",__glutWindowListSize));
    1720
    18       for (int i = 0; i < __glutWindowListSize; i++) {
     21      for (i = 0; i < __glutWindowListSize; i++) {
    1922        if (__glutWindowList[i])
    2023          {
Note: See TracChangeset for help on using the changeset viewer.