summaryrefslogtreecommitdiff
path: root/ext/session/modules.c
blob: 50d2062854f129783603cf6be569fe6e6417b3be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * To add a PHP session module, #include its header file and 
 * add a ps_xxx_ptr in the struct...
 */

#include "mod_files.h"

static ps_module *ps_modules[] = {
	ps_files_ptr,
	0,
};