forked from github/server
27 lines
784 B
C
27 lines
784 B
C
|
/* 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.
|
||
|
$Id: ugroup.c,v 1.1 2001/04/28 12:03:12 corwin Exp $
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
#include "ugroup.h"
|
||
|
#include <attrib.h>
|
||
|
|
||
|
attrib_type at_ugroup = {
|
||
|
"ugroup", NULL, NULL, NULL, NULL, NULL, ATF_UNIQUE
|
||
|
};
|
||
|
|
||
|
void
|
||
|
init_ugroup(void)
|
||
|
{
|
||
|
at_register(&at_ugroup);
|
||
|
}
|