1/* 2 * Copyright (c) 2009 Corey Tabaka 3 * 4 * Use of this source code is governed by a MIT-style 5 * license that can be found in the LICENSE file or at 6 * https://opensource.org/licenses/MIT 7 */ 8#include <lk/asm.h> 9 10/* TODO: */ 11 12.text 13.align 2 14 15/* void bzero(void *s, size_t n); */ 16FUNCTION(bzero) 17 ret 18 19/* void *memset(void *s, int c, size_t n); */ 20FUNCTION(memset) 21 ret 22 23