Ignore:
Timestamp:
Sep 3, 2002, 8:17:46 PM (23 years ago)
Author:
umoeller
Message:

Minor adjustments for new static handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/tree.c

    r196 r222  
    269269
    270270#define LEAF &sentinel           // all leafs are sentinels
    271 static TREE sentinel = { LEAF, LEAF, 0, BLACK};
     271STATIC TREE sentinel = { LEAF, LEAF, 0, BLACK};
    272272
    273273/*
     
    359359 */
    360360
    361 static void rotateLeft(TREE **root,
     361STATIC void rotateLeft(TREE **root,
    362362                       TREE *x)
    363363{
     
    396396 */
    397397
    398 static void rotateRight(TREE **root,
     398STATIC void rotateRight(TREE **root,
    399399                        TREE *x)
    400400{
     
    433433 */
    434434
    435 static void insertFixup(TREE **root,
     435STATIC void insertFixup(TREE **root,
    436436                        TREE *x)
    437437{
     
    583583 */
    584584
    585 static void deleteFixup(TREE **root,
     585STATIC void deleteFixup(TREE **root,
    586586                        TREE *tree)
    587587{
Note: See TracChangeset for help on using the changeset viewer.