Changeset 6262b5c in buchla-68k for lib700


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:
lib700
Files:
7 added
7 edited

Legend:

Unmodified
Added
Removed
  • lib700/bitrev.c

    r5fa506d r6262b5c  
    55   =============================================================================
    66*/
     7
     8#include "all.h"
    79
    810static int16_t bitmask[] = {
  • lib700/ctype.c

    r5fa506d r6262b5c  
    1414#define _CTYPE_C
    1515
    16 #include "ctype.h"
     16#include "all.h"
    1717
    1818#define _CS     _C|_S
     
    6666};
    6767
     68
  • lib700/ispow2.c

    r5fa506d r6262b5c  
    1111*/
    1212
    13 #include "stddefs.h"
     13#include "all.h"
    1414
    1515int16_t ispow2(int32_t x)
     
    3535        return(FALSE);                  /* no bits on isn't a power of 2 */
    3636}
     37
  • lib700/mangle.c

    r5fa506d r6262b5c  
    2020*/
    2121
     22#include "all.h"
     23
    2224int32_t mangle(int32_t *bitmap, int16_t nb, int32_t ib)
    2325{
  • lib700/micons.c

    r5fa506d r6262b5c  
    2323   =============================================================================
    2424*/
     25
     26#include "all.h"
    2527
    2628#define TESTER  0       /* define non-zero for a test program */
     
    7274#if     TESTER
    7375
    74 #include "stdio.h"
     76#include "all.h"
    7577
    7678/*
     
    9597
    9698#endif
     99
  • lib700/tolower.c

    r5fa506d r6262b5c  
    66*/
    77
    8 #include "ctype.h"
     8#include "all.h"
    99
    1010/*
     
    3333}
    3434
     35
  • lib700/toupper.c

    r5fa506d r6262b5c  
    66*/
    77
    8 #include "ctype.h"
     8#include "all.h"
    99
    1010/*
     
    3131        return(x);
    3232}
     33
Note: See TracChangeset for help on using the changeset viewer.