diff options
author | John Ankarström <john@ankarstrom.se> | 2021-07-25 15:16:22 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-07-25 15:16:22 +0200 |
commit | 48aac8801df86e743f5890a3cdc4882d0af89a4e (patch) | |
tree | fbef1606ce6784a8811bc10326218dcd3183e85d /src/group.c | |
parent | 0a1fe85b05749c9d1bb23142f4f9874ec716426b (diff) | |
download | jwm-48aac8801df86e743f5890a3cdc4882d0af89a4e.tar.gz |
Convert remaining function definitions
Diffstat (limited to 'src/group.c')
-rw-r--r-- | src/group.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/group.c b/src/group.c index ca38329..5a743a8 100644 --- a/src/group.c +++ b/src/group.c @@ -121,7 +121,9 @@ ReleaseOptionList(OptionListType *lp) /**************************************************************************** ****************************************************************************/ -GroupType *CreateGroup() { +GroupType * +CreateGroup() +{ GroupType *tp; tp = Allocate(sizeof(GroupType)); |