Changeset 6262b5c in buchla-68k for iolib


Ignore:
Timestamp:
07/10/2017 12:02:05 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
39a696b
Parents:
5fa506d
Message:

Added include files for global functions and variables.

Location:
iolib
Files:
7 added
7 edited

Legend:

Unmodified
Added
Removed
  • iolib/dofmt.c

    r5fa506d r6262b5c  
    2222#define CRUFTY  1
    2323
    24 #include "stddefs.h"
    25 #include "ctype.h"
    26 #include "stdarg.h"
    27 
    28 #include "strings.h"
     24#include "all.h"
    2925
    3026#define MAXDIGS 11
     
    347343        }
    348344}
     345
  • iolib/mdump.c

    r5fa506d r6262b5c  
    2323#define TESTER          0
    2424
    25 #include "stddefs.h"
    26 #include "stdio.h"
    27 #include "ctype.h"
     25#include "all.h"
    2826
    2927#define PERLINE 16
     
    128126
    129127#endif
     128
  • iolib/pause.c

    r5fa506d r6262b5c  
    66*/
    77
    8 #include "biosdefs.h"
     8#include "all.h"
    99
    1010extern  int16_t waitcr(void);
     
    1717        waitcr();
    1818}
     19
  • iolib/printf.c

    r5fa506d r6262b5c  
    1313*/
    1414
    15 #include "stddefs.h"
    16 #include "biosdefs.h"
    17 #include "stdarg.h"
     15#include "all.h"
    1816
    1917extern  int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args);
     
    5452        return(c);
    5553}
     54
  • iolib/rawio.c

    r5fa506d r6262b5c  
    6363 */
    6464
    65 #include "stddefs.h"
    66 #include "errdefs.h"
    67 #include "ascii.h"
    68 #include "biosdefs.h"
     65#include "all.h"
    6966
    7067
     
    222219                BIOS(B_PUTC, unit, c);
    223220}
     221
  • iolib/sprintf.c

    r5fa506d r6262b5c  
    66*/
    77
    8 #include "stdarg.h"
     8#include "all.h"
    99
    1010extern  int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args);
     
    4242        return((*buff++ = c) & 0xFF);
    4343}
     44
  • iolib/waitcr.c

    r5fa506d r6262b5c  
    66*/
    77
    8 #include "biosdefs.h"
    9 #include "stddefs.h"
     8#include "all.h"
    109
    1110extern  void    xtrap15(void);
     
    3534        return(c);      /* return the character that caused us to exit */
    3635}
     36
Note: See TracChangeset for help on using the changeset viewer.