Clean old .source directive out of asm code

This commit is contained in:
Justine Tunney 2022-03-18 12:43:21 -07:00
parent b149a9bcc4
commit 6c2fd9ecc6
269 changed files with 59 additions and 303 deletions

View file

@ -18,7 +18,6 @@
*/
#include "libc/macros.internal.h"
#include "libc/notice.inc"
.source __FILE__
// Allocates n * itemsize bytes, initialized to zero.
//

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
// Frees memory the C++ way.
//

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
// Allocates memory the C++ way.
//

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
// Allocates aligned memory the C++ way.
//

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
// Free memory returned by malloc() & co.
//

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_calloc
hook_calloc:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_free
hook_free:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_malloc
hook_malloc:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_malloc_trim
hook_malloc_trim:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_malloc_usable_size
hook_malloc_usable_size:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_memalign
hook_memalign:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_realloc
hook_realloc:

View file

@ -17,7 +17,6 @@
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/macros.internal.h"
.source __FILE__
.initbss 202,_init_realloc_in_place
hook_realloc_in_place:

View file

@ -18,7 +18,6 @@
*/
#include "libc/macros.internal.h"
#include "libc/notice.inc"
.source __FILE__
// Returns the number of bytes you can actually use in
// an allocated chunk, which may be more than you requested

View file

@ -18,7 +18,6 @@
*/
#include "libc/macros.internal.h"
#include "libc/notice.inc"
.source __FILE__
// Allocates / resizes / frees memory, e.g.
//

View file

@ -18,7 +18,6 @@
*/
#include "libc/macros.internal.h"
#include "libc/notice.inc"
.source __FILE__
// Resizes the space allocated for p to size n, only if this can be
// done without moving p (i.e., only if there is adjacent space