Changeset 168 for trunk/include/talloc.h


Ignore:
Timestamp:
03/02/10 19:08:42 (14 years ago)
Author:
tim
Message:

merged remaining smb_deps items into regfi

began formatting API comments for use with doxygen

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/talloc.h

    r147 r168  
    3333#include <string.h>
    3434#include <stdbool.h>
    35 #include "smb_deps.h" /* MAX macro */
     35
     36#ifndef MAX
     37#define MAX(a,b) ((a)>(b)?(a):(b))
     38#endif
     39
     40#ifndef MIN
     41#define MIN(a,b) ((a)<(b)?(a):(b))
     42#endif
    3643
    3744/*
Note: See TracChangeset for help on using the changeset viewer.