- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

15
sics.h
View File

@ -10,15 +10,15 @@
#ifndef SICSSICS
#define SICSSICS
typedef enum {
eTimer,
ePreset
}CounterMode;
typedef enum {
eTimer,
ePreset
} CounterMode;
/* the following line suppresses const declarations in tcl.h.
WARNING: including sics.h must always be done before tcl.h
-> makes the compiler happy M.Z. */
#define NO_CONST
#define NO_CONST
#include <stdlib.h>
#include <string.h>
@ -35,7 +35,7 @@
#include "nserver.h"
#include "servlog.h"
extern pServer pServ;
extern pServer pServ;
/**
* Decode privilege text. Implemented in access.c
@ -43,6 +43,5 @@
* @return -1 if code invalid, else the privilege code
*/
int decodeSICSPriv(char *privText);
#endif