summaryrefslogtreecommitdiff
path: root/Kernel/KSyms.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-15 12:30:48 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-15 12:30:48 +0100
commit022f7790db45ba61740b41a4807d9b7d2a732916 (patch)
tree1fc8e5883e6beaac1e4d3d3bda1a22b94bd1e792 /Kernel/KSyms.h
parentfbcc8ab840aaa212934da0082a039038c8a81e53 (diff)
downloadserenity-022f7790db45ba61740b41a4807d9b7d2a732916.zip
Use modern C++ attributes instead of __attribute__ voodoo.
This is quite nice, although I wish [[gnu::always_inline]] implied inline. Also "gnu::" is kind of a wart, but whatcha gonna do.
Diffstat (limited to 'Kernel/KSyms.h')
-rw-r--r--Kernel/KSyms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/KSyms.h b/Kernel/KSyms.h
index d0551c5307..a7f8c33fa3 100644
--- a/Kernel/KSyms.h
+++ b/Kernel/KSyms.h
@@ -8,7 +8,7 @@ struct KSym {
const char* name;
};
-const KSym* ksymbolicate(dword address) PURE;
+const KSym* ksymbolicate(dword address);
void load_ksyms();
void init_ksyms();