Big header file cleanup: everything that has to do with standard system

libraries is moved to system.h.
This commit is contained in:
Guus Sliepen 2003-07-17 15:06:27 +00:00
parent 47721be760
commit e449d94cae
48 changed files with 359 additions and 726 deletions

View file

@ -29,14 +29,13 @@
library for inclusion into tinc (http://tinc.nl.linux.org/) by
Guus Sliepen <guus@sliepen.eu.org>.
$Id: avl_tree.c,v 1.1.2.15 2003/07/12 17:48:38 guus Exp $
$Id: avl_tree.c,v 1.1.2.16 2003/07/17 15:06:25 guus Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <xalloc.h>
#include "system.h"
#include "avl_tree.h"
#include "xalloc.h"
#ifdef AVL_COUNT
#define AVL_NODE_COUNT(n) ((n) ? (n)->count : 0)