blob: 6046531e084ed6163e9913466ddec1f73edf52eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <tcl.h>
Tcl_PackageInitProc Crypt_Init, Limit_Init, Setuid_Init, Utime_Init;
int Tclhttpdbin_Init(Tcl_Interp *I) {
Crypt_Init(I);
Limit_Init(I);
Setuid_Init(I);
Utime_Init(I);
return TCL_OK;
}
|