diff options
author | Sascha Schumann <sas@php.net> | 1999-06-05 19:52:58 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-06-05 19:52:58 +0000 |
commit | a1b42e3f5e86027ec6e72a89a4bee057e4d9b605 (patch) | |
tree | 04c5956a87d2f2ad2a6f194783a96e78bb823abc /ext/session/modules.c | |
parent | 89f139d3b05c60232cc05e5f9359800a1fd466cb (diff) | |
download | php-git-a1b42e3f5e86027ec6e72a89a4bee057e4d9b605.tar.gz |
first import of session module
Diffstat (limited to 'ext/session/modules.c')
-rw-r--r-- | ext/session/modules.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/session/modules.c b/ext/session/modules.c new file mode 100644 index 0000000000..50d2062854 --- /dev/null +++ b/ext/session/modules.c @@ -0,0 +1,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, +}; + |