Author: bdonlan
Date: 2004-12-31 20:53:38 -0500 (Fri, 31 Dec 2004)
New Revision: 494

Modified:
   trunk/
   trunk/clients/havercurs/cmdline.h
   trunk/clients/havercurs/display.c
   trunk/clients/havercurs/display.h
   trunk/clients/havercurs/entry.c
   trunk/clients/havercurs/entry.h
   trunk/clients/havercurs/event.c
   trunk/clients/havercurs/event.h
   trunk/clients/havercurs/lineio.c
   trunk/clients/havercurs/lineio.h
   trunk/clients/havercurs/main.c
   trunk/clients/havercurs/mymalloc.c
   trunk/clients/havercurs/mymalloc.h
   trunk/clients/havercurs/net.c
   trunk/clients/havercurs/net.h
Log:
 [EMAIL PROTECTED]:  bdonlan | 2005-01-01T01:52:33.368634Z
 Add GPL notices to .c and .h files



Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 1f59643a-e6e5-0310-bc24-f7d4c744f460:/haver/local/trunk:10255
27e50396-46e3-0310-8b22-ae223a1f35ce:/local:212
edfcd8bd-4ce7-0310-a97e-bb1efd40edf3:/local:238
   + 1f59643a-e6e5-0310-bc24-f7d4c744f460:/haver/local/trunk:10256
27e50396-46e3-0310-8b22-ae223a1f35ce:/local:212
edfcd8bd-4ce7-0310-a97e-bb1efd40edf3:/local:238

Modified: trunk/clients/havercurs/cmdline.h
===================================================================
--- trunk/clients/havercurs/cmdline.h   2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/cmdline.h   2005-01-01 01:53:38 UTC (rev 494)
@@ -1,5 +1,23 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
 
+
 #ifndef CMDLINE_H
 #define CMDLINE_H 1
 

Modified: trunk/clients/havercurs/display.c
===================================================================
--- trunk/clients/havercurs/display.c   2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/display.c   2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include "display.h"
 #include <ncurses.h>
 

Modified: trunk/clients/havercurs/display.h
===================================================================
--- trunk/clients/havercurs/display.h   2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/display.h   2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef DISPLAY_H
 #define DISPLAY_H 1
 

Modified: trunk/clients/havercurs/entry.c
===================================================================
--- trunk/clients/havercurs/entry.c     2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/entry.c     2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include "mymalloc.h"
 #include <string.h>
 #include <stdlib.h>

Modified: trunk/clients/havercurs/entry.h
===================================================================
--- trunk/clients/havercurs/entry.h     2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/entry.h     2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef ENTRY_H
 #define ENTRY_H 1
 

Modified: trunk/clients/havercurs/event.c
===================================================================
--- trunk/clients/havercurs/event.c     2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/event.c     2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include "mymalloc.h"
 #include "event.h"
 #include <sys/time.h>

Modified: trunk/clients/havercurs/event.h
===================================================================
--- trunk/clients/havercurs/event.h     2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/event.h     2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef EVENT_H
 #define EVENT_H 1
 

Modified: trunk/clients/havercurs/lineio.c
===================================================================
--- trunk/clients/havercurs/lineio.c    2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/lineio.c    2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include <stdlib.h>
 #include <stdarg.h>
 #include <stddef.h>

Modified: trunk/clients/havercurs/lineio.h
===================================================================
--- trunk/clients/havercurs/lineio.h    2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/lineio.h    2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef LINEIO_H
 #define LINEIO_H 1
 

Modified: trunk/clients/havercurs/main.c
===================================================================
--- trunk/clients/havercurs/main.c      2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/main.c      2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include <ncurses.h>
 #include <signal.h>
 #include <stdlib.h>

Modified: trunk/clients/havercurs/mymalloc.c
===================================================================
--- trunk/clients/havercurs/mymalloc.c  2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/mymalloc.c  2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include <stdlib.h>
 #include <ncurses.h>
 #include "mymalloc.h"

Modified: trunk/clients/havercurs/mymalloc.h
===================================================================
--- trunk/clients/havercurs/mymalloc.h  2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/mymalloc.h  2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef MYMALLOC_H
 #define MYMALLOC_H 1
 

Modified: trunk/clients/havercurs/net.c
===================================================================
--- trunk/clients/havercurs/net.c       2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/net.c       2005-01-01 01:53:38 UTC (rev 494)
@@ -1,3 +1,22 @@
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include "net.h"
 #include <sys/socket.h>
 #include <netinet/ip.h>

Modified: trunk/clients/havercurs/net.h
===================================================================
--- trunk/clients/havercurs/net.h       2005-01-01 01:53:09 UTC (rev 493)
+++ trunk/clients/havercurs/net.h       2005-01-01 01:53:38 UTC (rev 494)
@@ -1,4 +1,22 @@
-/* vim: set ts=4 sw=4 expandtab si ai sta tw=104: */
+/* vim: set ts=4 sw=4 expandtab si ai sta tw=104:
+ *
+ * Copyright (C) 2004 Bryan Donlan
+ * 
+ * This module is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This module is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this module; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef NET_H
 #define NET_H 1
 


Reply via email to