aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2004-06-22 11:17:34 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2004-06-22 11:17:34 +0000
commit85823840e6c223e7ba2b4c30bb4671f1b8ee0fa6 (patch)
tree50f2bd57cec7399800ed700d1ca866cd97d12666
parent3ff83c9a1a333f455785d0949d64951c8b636289 (diff)
downloadellinika-85823840e6c223e7ba2b4c30bb4671f1b8ee0fa6.tar.gz
ellinika-85823840e6c223e7ba2b4c30bb4671f1b8ee0fa6.tar.bz2
Added copyleft header
git-svn-id: file:///home/puszcza/svnroot/ellinika/trunk@163 941c8c0f-9102-463b-b60b-cd22ce0e6858
-rw-r--r--src/Makefile.am17
-rw-r--r--src/gram.y18
-rw-r--r--src/input.l19
-rw-r--r--src/sql.c19
-rw-r--r--src/xcript.c19
5 files changed, 92 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index b108e97..6319ea0 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,3 +1,20 @@
+# This file is part of Ellinika project.
+# Copyright (C) 2004 Sergey Poznyakoff
+#
+# Ellinika 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.
+#
+# Ellinika 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 Ellinika; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
noinst_PROGRAMS=trans
trans_SOURCES=main.c list.c sql.c xcript.c gram.y input.l
trans_LDADD=-ll
diff --git a/src/gram.y b/src/gram.y
index c8ee0d7..93484a7 100644
--- a/src/gram.y
+++ b/src/gram.y
@@ -1,4 +1,22 @@
%{
+/*
+ This file is part of Ellinika project.
+ Copyright (C) 2004 Sergey Poznyakoff
+
+ Ellinika 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.
+
+ Ellinika 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 Ellinika; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
#include "trans.h"
#define obstack_chunk_alloc malloc
#define obstack_chunk_free free
diff --git a/src/input.l b/src/input.l
index 79a4161..f05a6b5 100644
--- a/src/input.l
+++ b/src/input.l
@@ -1,4 +1,23 @@
%{
+/*
+ This file is part of Ellinika project.
+ Copyright (C) 2004 Sergey Poznyakoff
+
+ Ellinika 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.
+
+ Ellinika 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 Ellinika; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include "trans.h"
#include "gram.h"
#include <string.h>
diff --git a/src/sql.c b/src/sql.c
index 8c34696..f638c97 100644
--- a/src/sql.c
+++ b/src/sql.c
@@ -1,3 +1,22 @@
+/*
+ This file is part of Ellinika project.
+ Copyright (C) 2004 Sergey Poznyakoff
+
+ Ellinika 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.
+
+ Ellinika 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 Ellinika; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
diff --git a/src/xcript.c b/src/xcript.c
index 2a2e74c..a401bc5 100644
--- a/src/xcript.c
+++ b/src/xcript.c
@@ -1,3 +1,22 @@
+/*
+ This file is part of Ellinika project.
+ Copyright (C) 2004 Sergey Poznyakoff
+
+ Ellinika 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.
+
+ Ellinika 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 Ellinika; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include "trans.h"
struct xcript_tab {

Return to:

Send suggestions and report system problems to the System administrator.