2001-04-28 14:03:12 +02:00
|
|
|
/* vi: set ts=2:
|
|
|
|
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
|
|
| | Enno Rehling <enno@eressea-pbem.de>
|
|
|
|
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
|
|
| (c) 1998 - 2001 | Henning Peters <faroul@beyond.kn-bremen.de>
|
|
|
|
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
|
|
|
|
+-------------------+ Stefan Reich <reich@halbling.de>
|
|
|
|
|
|
|
|
This program may not be used, modified or distributed
|
|
|
|
without prior permission by the authors of Eressea.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2001-12-10 01:13:39 +01:00
|
|
|
#include "eressea.h"
|
2001-04-28 14:03:12 +02:00
|
|
|
#include "ugroup.h"
|
2001-04-29 21:27:42 +02:00
|
|
|
|
2001-04-28 14:03:12 +02:00
|
|
|
#include <attrib.h>
|
|
|
|
|
2001-04-29 21:27:42 +02:00
|
|
|
#ifdef USE_UGROUPS
|
|
|
|
|
2001-04-28 14:03:12 +02:00
|
|
|
attrib_type at_ugroup = {
|
|
|
|
"ugroup", NULL, NULL, NULL, NULL, NULL, ATF_UNIQUE
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
init_ugroup(void)
|
|
|
|
{
|
|
|
|
at_register(&at_ugroup);
|
|
|
|
}
|
2001-04-29 21:27:42 +02:00
|
|
|
|
|
|
|
#endif
|