#include <stdlib.h>
#include <math.h>
#include <sys/time.h>
#include <ctype.h>
#include "config.h"
#include "scheduler.h"
#include "random.h"
Include dependency graph for misc.cc:

Go to the source code of this file.
Data Structures | |
| class | HasInt64Command |
| class | HasSTLCommand |
| class | RandomCommand |
| class | TimeAtofCommand |
| class | VersionCommand |
Functions | |
| void | init_misc (void) |
Variables | |
| static const char | rcsid [] |
| char | version_string [] |
|
|
Definition at line 228 of file misc.cc. Referenced by Tcl_AppInit(). 00229 { 00230 (void)new VersionCommand; 00231 (void)new RandomCommand; 00232 (void)new TimeAtofCommand; 00233 (void)new HasInt64Command; 00234 (void)new HasSTLCommand; 00235 #if defined(HAVE_INT64) 00236 (void)new Add64Command; 00237 (void)new Mult64Command; 00238 (void)new Int64ToDoubleCommand; 00239 #endif 00240 }
|
|
|
Initial value:
"@(#) $Header: /nfs/jade/vint/CVSROOT/ns-2/common/misc.cc,v 1.14 2002/06/04 23:25:19 haldar Exp $ (LBL)"
|
|
|
|
1.4.6