summaryrefslogtreecommitdiff
path: root/plugins/MirLua/Modules/ffi/src
diff options
context:
space:
mode:
authorKirill Volinsky <Mataes2007@gmail.com>2017-12-06 14:15:09 +0300
committerKirill Volinsky <Mataes2007@gmail.com>2017-12-06 14:15:09 +0300
commita27079fe5c4a210664515c47767c00112c435d65 (patch)
tree39e36b58b4138af46e2f10661de352482b89399d /plugins/MirLua/Modules/ffi/src
parent87c39b86cfeb0dedf94f9bf04af30de2daf368bc (diff)
convert all files exept curl and new_gpg to utf-8 BOM (reverted from commit 62202ed10617927d5429bc59898e12a366abe744)
Diffstat (limited to 'plugins/MirLua/Modules/ffi/src')
-rw-r--r--plugins/MirLua/Modules/ffi/src/call.c2
-rw-r--r--plugins/MirLua/Modules/ffi/src/call_arm.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/call_x64.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/call_x64win.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/call_x86.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/ctype.c2
-rw-r--r--plugins/MirLua/Modules/ffi/src/dynasm/dasm_arm.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/dynasm/dasm_ppc.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/dynasm/dasm_proto.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/dynasm/dasm_x86.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/ffi.c2
-rw-r--r--plugins/MirLua/Modules/ffi/src/ffi.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/msvc/stdbool.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/msvc/stdint.h2
-rw-r--r--plugins/MirLua/Modules/ffi/src/parser.c2
-rw-r--r--plugins/MirLua/Modules/ffi/src/stdafx.cxx2
16 files changed, 16 insertions, 16 deletions
diff --git a/plugins/MirLua/Modules/ffi/src/call.c b/plugins/MirLua/Modules/ffi/src/call.c
index 7a46cf773d..d483d4cc69 100644
--- a/plugins/MirLua/Modules/ffi/src/call.c
+++ b/plugins/MirLua/Modules/ffi/src/call.c
@@ -1,4 +1,4 @@
-/* vim: ts=4 sw=4 sts=4 et tw=78
+/* vim: ts=4 sw=4 sts=4 et tw=78
* Portions copyright (c) 2015-present, Facebook, Inc. All rights reserved.
* Portions copyright (c) 2011 James R. McKaskill.
*
diff --git a/plugins/MirLua/Modules/ffi/src/call_arm.h b/plugins/MirLua/Modules/ffi/src/call_arm.h
index 4343f8da41..a84f69e762 100644
--- a/plugins/MirLua/Modules/ffi/src/call_arm.h
+++ b/plugins/MirLua/Modules/ffi/src/call_arm.h
@@ -1,4 +1,4 @@
-/*
+/*
** This file has been pre-processed with DynASM.
** http://luajit.org/dynasm.html
** DynASM version 1.3.0, DynASM arm version 1.3.0
diff --git a/plugins/MirLua/Modules/ffi/src/call_x64.h b/plugins/MirLua/Modules/ffi/src/call_x64.h
index 3f016cee1d..095118ec43 100644
--- a/plugins/MirLua/Modules/ffi/src/call_x64.h
+++ b/plugins/MirLua/Modules/ffi/src/call_x64.h
@@ -1,4 +1,4 @@
-/*
+/*
** This file has been pre-processed with DynASM.
** http://luajit.org/dynasm.html
** DynASM version 1.3.0, DynASM x64 version 1.3.0
diff --git a/plugins/MirLua/Modules/ffi/src/call_x64win.h b/plugins/MirLua/Modules/ffi/src/call_x64win.h
index 8107b896db..fae36a0f96 100644
--- a/plugins/MirLua/Modules/ffi/src/call_x64win.h
+++ b/plugins/MirLua/Modules/ffi/src/call_x64win.h
@@ -1,4 +1,4 @@
-/*
+/*
** This file has been pre-processed with DynASM.
** http://luajit.org/dynasm.html
** DynASM version 1.3.0, DynASM x64 version 1.3.0
diff --git a/plugins/MirLua/Modules/ffi/src/call_x86.h b/plugins/MirLua/Modules/ffi/src/call_x86.h
index 5ffe328eb3..40bad83147 100644
--- a/plugins/MirLua/Modules/ffi/src/call_x86.h
+++ b/plugins/MirLua/Modules/ffi/src/call_x86.h
@@ -1,4 +1,4 @@
-/*
+/*
** This file has been pre-processed with DynASM.
** http://luajit.org/dynasm.html
** DynASM version 1.3.0, DynASM x86 version 1.3.0
diff --git a/plugins/MirLua/Modules/ffi/src/ctype.c b/plugins/MirLua/Modules/ffi/src/ctype.c
index 673337fe2b..6208937536 100644
--- a/plugins/MirLua/Modules/ffi/src/ctype.c
+++ b/plugins/MirLua/Modules/ffi/src/ctype.c
@@ -1,4 +1,4 @@
-/* vim: ts=4 sw=4 sts=4 et tw=78
+/* vim: ts=4 sw=4 sts=4 et tw=78
* Portions copyright (c) 2015-present, Facebook, Inc. All rights reserved.
* Portions copyright (c) 2011 James R. McKaskill.
*
diff --git a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_arm.h b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_arm.h
index be003a35b1..da88199284 100644
--- a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_arm.h
+++ b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_arm.h
@@ -1,4 +1,4 @@
-/*
+/*
** DynASM ARM encoding engine.
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
diff --git a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_ppc.h b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_ppc.h
index 19b7672cbc..74e1c7d432 100644
--- a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_ppc.h
+++ b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_ppc.h
@@ -1,4 +1,4 @@
-/*
+/*
** DynASM PPC encoding engine.
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
diff --git a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_proto.h b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_proto.h
index 85959c56b7..94a79a163d 100644
--- a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_proto.h
+++ b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_proto.h
@@ -1,4 +1,4 @@
-/*
+/*
** DynASM encoding engine prototypes.
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
diff --git a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_x86.h b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_x86.h
index 853ab061a9..83c6eb5a0f 100644
--- a/plugins/MirLua/Modules/ffi/src/dynasm/dasm_x86.h
+++ b/plugins/MirLua/Modules/ffi/src/dynasm/dasm_x86.h
@@ -1,4 +1,4 @@
-/*
+/*
** DynASM x86 encoding engine.
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
diff --git a/plugins/MirLua/Modules/ffi/src/ffi.c b/plugins/MirLua/Modules/ffi/src/ffi.c
index 0a3c772d9f..20dcfbdc49 100644
--- a/plugins/MirLua/Modules/ffi/src/ffi.c
+++ b/plugins/MirLua/Modules/ffi/src/ffi.c
@@ -1,4 +1,4 @@
-/* vim: ts=4 sw=4 sts=4 et tw=78
+/* vim: ts=4 sw=4 sts=4 et tw=78
* Portions copyright (c) 2015-present, Facebook, Inc. All rights reserved.
* Portions copyright (c) 2011 James R. McKaskill.
*
diff --git a/plugins/MirLua/Modules/ffi/src/ffi.h b/plugins/MirLua/Modules/ffi/src/ffi.h
index d7889be9df..48e5d2c761 100644
--- a/plugins/MirLua/Modules/ffi/src/ffi.h
+++ b/plugins/MirLua/Modules/ffi/src/ffi.h
@@ -1,4 +1,4 @@
-/* vim: ts=4 sw=4 sts=4 et tw=78
+/* vim: ts=4 sw=4 sts=4 et tw=78
* Portions copyright (c) 2015-present, Facebook, Inc. All rights reserved.
* Portions copyright (c) 2011 James R. McKaskill.
*
diff --git a/plugins/MirLua/Modules/ffi/src/msvc/stdbool.h b/plugins/MirLua/Modules/ffi/src/msvc/stdbool.h
index fb20fc24fb..b6fa0603d2 100644
--- a/plugins/MirLua/Modules/ffi/src/msvc/stdbool.h
+++ b/plugins/MirLua/Modules/ffi/src/msvc/stdbool.h
@@ -1,4 +1,4 @@
-/* vim: ts=4 sw=4 sts=4 et
+/* vim: ts=4 sw=4 sts=4 et
*
* Copyright (c) 2009 James R. McKaskill
*
diff --git a/plugins/MirLua/Modules/ffi/src/msvc/stdint.h b/plugins/MirLua/Modules/ffi/src/msvc/stdint.h
index d28fa121a6..01ca453687 100644
--- a/plugins/MirLua/Modules/ffi/src/msvc/stdint.h
+++ b/plugins/MirLua/Modules/ffi/src/msvc/stdint.h
@@ -1,4 +1,4 @@
-// boost cstdint.hpp header file ------------------------------------------//
+// boost cstdint.hpp header file ------------------------------------------//
// (C) Copyright Beman Dawes 1999.
// (C) Copyright Jens Mauer 2001
diff --git a/plugins/MirLua/Modules/ffi/src/parser.c b/plugins/MirLua/Modules/ffi/src/parser.c
index 97df4f4125..6dd099a9a4 100644
--- a/plugins/MirLua/Modules/ffi/src/parser.c
+++ b/plugins/MirLua/Modules/ffi/src/parser.c
@@ -1,4 +1,4 @@
-/* vim: ts=4 sw=4 sts=4 et tw=78
+/* vim: ts=4 sw=4 sts=4 et tw=78
* Portions copyright (c) 2015-present, Facebook, Inc. All rights reserved.
* Portions copyright (c) 2011 James R. McKaskill.
*
diff --git a/plugins/MirLua/Modules/ffi/src/stdafx.cxx b/plugins/MirLua/Modules/ffi/src/stdafx.cxx
index 83bd083a45..7b43c3cb6c 100644
--- a/plugins/MirLua/Modules/ffi/src/stdafx.cxx
+++ b/plugins/MirLua/Modules/ffi/src/stdafx.cxx
@@ -1 +1 @@
-#include "ffi.h"
+#include "ffi.h"