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

Side by Side Diff: third_party/lua/src/lmem.h

Issue 1842753002: Style bikeshed - remove extraneous whitespace (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/lua/src/ldo.h ('k') | third_party/lua/src/lobject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ** $Id: lmem.h,v 1.40 2013/02/20 14:08:21 roberto Exp $ 2 ** $Id: lmem.h,v 1.40 2013/02/20 14:08:21 roberto Exp $
3 ** Interface to Memory Manager 3 ** Interface to Memory Manager
4 ** See Copyright Notice in lua.h 4 ** See Copyright Notice in lua.h
5 */ 5 */
6 6
7 #ifndef lmem_h 7 #ifndef lmem_h
8 #define lmem_h 8 #define lmem_h
9 9
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 LUAI_FUNC l_noret luaM_toobig (lua_State *L); 47 LUAI_FUNC l_noret luaM_toobig (lua_State *L);
48 48
49 /* not to be called directly */ 49 /* not to be called directly */
50 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize, 50 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
51 size_t size); 51 size_t size);
52 LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size, 52 LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size,
53 size_t size_elem, int limit, 53 size_t size_elem, int limit,
54 const char *what); 54 const char *what);
55 55
56 #endif 56 #endif
57
OLDNEW
« no previous file with comments | « third_party/lua/src/ldo.h ('k') | third_party/lua/src/lobject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698