This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
script 60 (void) // addr = 219, flags=0000 | |
{ | |
int local0, local1; | |
int goto_block; | |
switch (goto_block) { | |
case 0: | |
local0 = 0; | |
local1 = 40; | |
GiveInventory("Crossbow", 1); | |
GiveInventory("Blaster", 1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright (c) 2014, Matthias Schiffer <[email protected]> | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
1. Redistributions of source code must retain the above copyright notice, | |
this list of conditions and the following disclaimer. | |
2. Redistributions in binary form must reproduce the above copyright notice, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static __inline long __syscall0(long n) | |
{ | |
unsigned long ret; | |
__asm__ __volatile__ ("syscall" : "=a"(ret) : "a"(n) : "rcx", "r11", "memory"); | |
return ret; | |
} | |
static __inline long __syscall1(long n, long a1) | |
{ | |
unsigned long ret; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -urN ClickHouse-1.1.54231-stable.orig/contrib/liblz4/CMakeLists.txt ClickHouse-1.1.54231-stable/contrib/liblz4/CMakeLists.txt | |
--- ClickHouse-1.1.54231-stable.orig/contrib/liblz4/CMakeLists.txt 2017-05-16 14:07:59.632657802 +0300 | |
+++ ClickHouse-1.1.54231-stable/contrib/liblz4/CMakeLists.txt 2017-05-16 14:37:34.273458882 +0300 | |
@@ -5,4 +5,5 @@ | |
src/lz4hc.c | |
include/lz4/lz4.h | |
- include/lz4/lz4hc.h) | |
+ include/lz4/lz4hc.h | |
+ include/lz4/lz4opt.h) |