summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-07 12:46:33 +0100
committerwm4 <wm4@nowhere>2014-03-11 00:20:26 +0100
commit63afe3eb98750fe14ef677c62c2926e8acbb30bb (patch)
tree72a6030240d5606953aee4eb0fd5198cf8ee3f0d
parent72c70eb05b5e5907b3f444989cda63578b883ecd (diff)
downloadmpv-63afe3eb98750fe14ef677c62c2926e8acbb30bb.tar.bz2
mpv-63afe3eb98750fe14ef677c62c2926e8acbb30bb.tar.xz
lua: add license header
Oops.
-rw-r--r--player/lua.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/player/lua.c b/player/lua.c
index d6e44d9c18..5e28f3873f 100644
--- a/player/lua.c
+++ b/player/lua.c
@@ -1,3 +1,20 @@
+/*
+ * This file is part of mpv.
+ *
+ * mpv 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.
+ *
+ * mpv 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 mpv. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <assert.h>
#include <string.h>