summaryrefslogtreecommitdiff
path: root/src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2018-12-05 14:11:38 -0500
committerHenrik Edin <henrik.edin@mongodb.com>2018-12-11 12:02:44 -0500
commitd525ae91e64209267fdaedc17a2542f61b638849 (patch)
treea3fc55e5e202e3dbea2aa15635c8d4f3b20c6fd1 /src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h
parentbc035c247827fbda8df43f5df6bb075da234179d (diff)
downloadmongo-d525ae91e64209267fdaedc17a2542f61b638849.tar.gz
SERVER-38168 Vendor Zstandard 1.3.7 to third_party
Added a Zstd based message compressor.
Diffstat (limited to 'src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h')
-rw-r--r--src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h b/src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h
new file mode 100644
index 00000000000..ef514c3494a
--- /dev/null
+++ b/src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/module.h
@@ -0,0 +1,10 @@
+#ifndef LINUX_MODULE_H_
+#define LINUX_MODULE_H_
+
+#define EXPORT_SYMBOL(symbol) \
+ void* __##symbol = symbol
+#define MODULE_LICENSE(license) static char const *const LICENSE = license
+#define MODULE_DESCRIPTION(description) \
+ static char const *const DESCRIPTION = description
+
+#endif // LINUX_MODULE_H_