1// Copyright 2017 The Fuchsia Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5#include "asm.h" 6 7// The strchrnul implementation is verbatim from cortex-strings. 8// But the strchrnul symbol must be weak, with a __strchrnul alias. 9 10#include "third_party/lib/cortex-strings/src/aarch64/strchrnul.S" 11 12ALIAS(strchrnul, __strchrnul) 13.weak strchrnul 14