Changeset 5529 for trunk/src


Ignore:
Timestamp:
Apr 17, 2001, 1:05:31 AM (24 years ago)
Author:
bird
Message:

Removed all 'register' keyword.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev16/vprntf16.c

    r5298 r5529  
    1 /* $Id: vprntf16.c,v 1.5 2001-03-11 16:47:28 bird Exp $
     1/* $Id: vprntf16.c,v 1.6 2001-04-16 23:05:31 bird Exp $
    22 *
    33 * vprintf and printf - 16-bit.
     
    436436 *            At runtime the text is only sendt to com-port.
    437437 */
    438 static char *stroutconsole(register char *psz, signed cchMax)
    439 {
    440     register CHAR   ch;
     438static char *stroutconsole(char *psz, signed cchMax)
     439{
     440    CHAR   ch;
    441441
    442442    while (cchMax > 0 && *psz != '\0')
    443443    {
    444         register signed cch = 0;
     444        signed cch = 0;
    445445        USHORT          us;             /* Bytes written (ignored). */
    446446
Note: See TracChangeset for help on using the changeset viewer.