mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
2e5281fa2d
git-svn-id: svn://svn.cc65.org/cc65/trunk@4421 b7a2c559-68d2-44c3-8de9-860c34a00d81
13 lines
282 B
ArmAsm
13 lines
282 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2009-11-01
|
|
;
|
|
; void tgi_free_vectorfont (const tgi_vectorfont* font);
|
|
; /* Free a vector font that was previously loaded into memory. */
|
|
;
|
|
; This function is identical to free(void*)
|
|
;
|
|
|
|
.import _free
|
|
.export _tgi_free_vectorfont := _free
|
|
|