summaryrefslogtreecommitdiffstats
path: root/lem
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@mailme.dk>2013-01-10 23:49:52 +0100
committerEmil Renner Berthing <esmil@mailme.dk>2013-01-11 18:07:33 +0100
commit3650b953cf452493694e68bad592fd3ada371d74 (patch)
tree441870529577fd2ade72bb3911efc6d77444ccd6 /lem
parente9ffe6dd0d0ec71e73ec39cdeddd09757fb242e6 (diff)
downloadlem-3650b953cf452493694e68bad592fd3ada371d74.tar.gz
lem-3650b953cf452493694e68bad592fd3ada371d74.tar.xz
lem-3650b953cf452493694e68bad592fd3ada371d74.zip
Re-license as LGPL
Acked-by: Asbjørn Sloth Tønnesen <asbjorn@asbjorn.biz>
Diffstat (limited to 'lem')
-rw-r--r--lem/hathaway.lua17
-rw-r--r--lem/http.lua14
-rw-r--r--lem/http/core.c14
-rw-r--r--lem/http/server.lua16
-rw-r--r--lem/io.lua16
-rw-r--r--lem/io/core.c16
-rw-r--r--lem/io/file.c16
-rw-r--r--lem/io/queue.lua14
-rw-r--r--lem/io/server.c16
-rw-r--r--lem/io/stream.c16
-rw-r--r--lem/io/tcp.c14
-rw-r--r--lem/lfs.lua16
-rw-r--r--lem/lfs/core.c16
-rw-r--r--lem/parsers.lua16
-rw-r--r--lem/parsers/core.c14
-rw-r--r--lem/repl.lua14
-rw-r--r--lem/utils.c14
17 files changed, 130 insertions, 129 deletions
diff --git a/lem/hathaway.lua b/lem/hathaway.lua
index 123cb1f..c2bed5c 100644
--- a/lem/hathaway.lua
+++ b/lem/hathaway.lua
@@ -1,19 +1,20 @@
--
-- This file is part of LEM, a Lua Event Machine.
--- Copyright 2011-2012 Emil Renner Berthing
+-- Copyright 2011-2013 Emil Renner Berthing
+-- Copyright 2012 Asbjørn Sloth Tønnesen
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local format = string.format
diff --git a/lem/http.lua b/lem/http.lua
index 190b80e..8635bf9 100644
--- a/lem/http.lua
+++ b/lem/http.lua
@@ -2,18 +2,18 @@
-- This file is part of LEM, a Lua Event Machine.
-- Copyright 2011-2012 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local io = require 'lem.io'
diff --git a/lem/http/core.c b/lem/http/core.c
index ed4ef0e..3d4efc3 100644
--- a/lem/http/core.c
+++ b/lem/http/core.c
@@ -2,18 +2,18 @@
* This file is part of LEM, a Lua Event Machine.
* Copyright 2011-2012 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <lem-parsers.h>
diff --git a/lem/http/server.lua b/lem/http/server.lua
index 0ed8473..831c3a1 100644
--- a/lem/http/server.lua
+++ b/lem/http/server.lua
@@ -1,19 +1,19 @@
--
-- This file is part of LEM, a Lua Event Machine.
--- Copyright 2011-2012 Emil Renner Berthing
+-- Copyright 2011-2013 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local setmetatable = setmetatable
diff --git a/lem/io.lua b/lem/io.lua
index f6f5236..41d7732 100644
--- a/lem/io.lua
+++ b/lem/io.lua
@@ -1,19 +1,19 @@
--
-- This file is part of LEM, a Lua Event Machine.
--- Copyright 2011-2012 Emil Renner Berthing
+-- Copyright 2011-2013 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local utils = require 'lem.utils'
diff --git a/lem/io/core.c b/lem/io/core.c
index 26552d3..e57e46b 100644
--- a/lem/io/core.c
+++ b/lem/io/core.c
@@ -1,19 +1,19 @@
/*
* This file is part of LEM, a Lua Event Machine.
- * Copyright 2011-2012 Emil Renner Berthing
+ * Copyright 2011-2013 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/lem/io/file.c b/lem/io/file.c
index 90f6774..30515a0 100644
--- a/lem/io/file.c
+++ b/lem/io/file.c
@@ -1,19 +1,19 @@
/*
* This file is part of LEM, a Lua Event Machine.
- * Copyright 2011-2012 Emil Renner Berthing
+ * Copyright 2012-2013 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
struct file {
diff --git a/lem/io/queue.lua b/lem/io/queue.lua
index 70ee887..1a7e188 100644
--- a/lem/io/queue.lua
+++ b/lem/io/queue.lua
@@ -2,18 +2,18 @@
-- This file is part of LEM, a Lua Event Machine.
-- Copyright 2011-2012 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local utils = require 'lem.utils'
diff --git a/lem/io/server.c b/lem/io/server.c
index b7655ef..9af8cf1 100644
--- a/lem/io/server.c
+++ b/lem/io/server.c
@@ -1,19 +1,19 @@
/*
* This file is part of LEM, a Lua Event Machine.
- * Copyright 2011-2012 Emil Renner Berthing
+ * Copyright 2011-2013 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MAXPENDING
diff --git a/lem/io/stream.c b/lem/io/stream.c
index b511390..5adce73 100644
--- a/lem/io/stream.c
+++ b/lem/io/stream.c
@@ -1,19 +1,19 @@
/*
* This file is part of LEM, a Lua Event Machine.
- * Copyright 2011-2012 Emil Renner Berthing
+ * Copyright 2011-2013 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
struct stream {
diff --git a/lem/io/tcp.c b/lem/io/tcp.c
index 481563f..a819502 100644
--- a/lem/io/tcp.c
+++ b/lem/io/tcp.c
@@ -2,18 +2,18 @@
* This file is part of LEM, a Lua Event Machine.
* Copyright 2011-2012 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
struct tcp_getaddr {
diff --git a/lem/lfs.lua b/lem/lfs.lua
index ea4e317..7f38363 100644
--- a/lem/lfs.lua
+++ b/lem/lfs.lua
@@ -1,19 +1,19 @@
--
-- This file is part of LEM, a Lua Event Machine.
--- Copyright 2011-2012 Emil Renner Berthing
+-- Copyright 2012 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local lfs = require 'lem.lfs.core'
diff --git a/lem/lfs/core.c b/lem/lfs/core.c
index 6a95927..945d0cb 100644
--- a/lem/lfs/core.c
+++ b/lem/lfs/core.c
@@ -1,19 +1,19 @@
/*
* This file is part of LEM, a Lua Event Machine.
- * Copyright 2011-2012 Emil Renner Berthing
+ * Copyright 2012 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/lem/parsers.lua b/lem/parsers.lua
index cdf345c..0e4ccac 100644
--- a/lem/parsers.lua
+++ b/lem/parsers.lua
@@ -1,19 +1,19 @@
--
-- This file is part of LEM, a Lua Event Machine.
--- Copyright 2011-2012 Emil Renner Berthing
+-- Copyright 2012-2013 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local parsers = require 'lem.parsers.core'
diff --git a/lem/parsers/core.c b/lem/parsers/core.c
index 8154381..de60227 100644
--- a/lem/parsers/core.c
+++ b/lem/parsers/core.c
@@ -2,18 +2,18 @@
* This file is part of LEM, a Lua Event Machine.
* Copyright 2011-2013 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <lem-parsers.h>
diff --git a/lem/repl.lua b/lem/repl.lua
index f57bdcb..ecc2573 100644
--- a/lem/repl.lua
+++ b/lem/repl.lua
@@ -2,18 +2,18 @@
-- This file is part of LEM, a Lua Event Machine.
-- Copyright 2011-2012 Emil Renner Berthing
--
--- LEM is free software: you can redistribute it and/or
--- modify it under the terms of the GNU General Public License as
+-- LEM is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
--- LEM is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- LEM 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.
+-- GNU Lesser General Public License for more details.
--
--- You should have received a copy of the GNU General Public License
--- along with LEM. If not, see <http://www.gnu.org/licenses/>.
+-- You should have received a copy of the GNU Lesser General Public
+-- License along with LEM. If not, see <http://www.gnu.org/licenses/>.
--
local utils = require 'lem.utils'
diff --git a/lem/utils.c b/lem/utils.c
index 0a93ae2..18e9c67 100644
--- a/lem/utils.c
+++ b/lem/utils.c
@@ -2,18 +2,18 @@
* This file is part of LEM, a Lua Event Machine.
* Copyright 2011-2012 Emil Renner Berthing
*
- * LEM is free software: you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
+ * LEM is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
- * LEM is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * LEM 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.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with LEM. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with LEM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <sys/time.h>