aboutsummaryrefslogtreecommitdiffstats
path: root/apps/clients.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/clients.h')
-rw-r--r--apps/clients.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/clients.h b/apps/clients.h
index d0bffd3..e467c67 100644
--- a/apps/clients.h
+++ b/apps/clients.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.12 2008/05/09 12:35:57 james
+ * *** empty log message ***
+ *
* Revision 1.11 2008/03/11 17:56:04 james
* *** empty log message ***
*
@@ -50,14 +53,16 @@
#ifndef __CLIENTS_H__
#define __CLIENTS_H__
-typedef struct Client_struct {
+typedef struct Client_struct
+{
struct Client_struct *next;
int initialized;
Socket *s;
int dead;
} Client;
-typedef struct {
+typedef struct
+{
Client *head;
int n;
} Clients;