Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: third_party/lzma_sdk/C/7zAlloc.h

Issue 6730044: Upgrading lzma_sdk to version 9.20. Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 /* 7zAlloc.h -- Allocation functions
2 2010-10-29 : Igor Pavlov : Public domain */
3
4 #ifndef __7Z_ALLOC_H
5 #define __7Z_ALLOC_H
6
7 #include <stdlib.h>
8
9 void *SzAlloc(void *p, size_t size);
10 void SzFree(void *p, void *address);
11
12 void *SzAllocTemp(void *p, size_t size);
13 void SzFreeTemp(void *p, void *address);
14
15 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698