mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
modifications. Mad as a (pointy)hatter... Notified by: kris Approved by: portmgr (earlier)
15 lines
249 B
C
15 lines
249 B
C
#include <tcl.h>
|
|
|
|
Tcl_PackageInitProc Crypt_Init, Limit_Init, Setuid_Init, Utime_Init;
|
|
Tcl_PackageInitProc Httpdate_Init;
|
|
|
|
int
|
|
Tclhttpdbin_Init(Tcl_Interp *I) {
|
|
|
|
Crypt_Init(I);
|
|
Limit_Init(I);
|
|
Setuid_Init(I);
|
|
Httpdate_Init(I);
|
|
|
|
return TCL_OK;
|
|
}
|