strrchr.S (498495dba268b20e8eadd7fe93c140c68b6cc9d2) | strrchr.S (f3c78e949d3fb0afcc1bdd8e44b0902897fc2f84) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * arch/alpha/lib/strrchr.S 4 * Contributed by Richard Henderson (rth@tamu.edu) 5 * 6 * Return the address of the last occurrence of a given character 7 * within a null-terminated string, or null if it is not found. 8 */ | 1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * arch/alpha/lib/strrchr.S 4 * Contributed by Richard Henderson (rth@tamu.edu) 5 * 6 * Return the address of the last occurrence of a given character 7 * within a null-terminated string, or null if it is not found. 8 */ |
9#include <asm/export.h> | 9#include <linux/export.h> |
10#include <asm/regdef.h> 11 12 .set noreorder 13 .set noat 14 15 .align 3 16 .ent strrchr 17 .globl strrchr --- 72 unchanged lines hidden --- | 10#include <asm/regdef.h> 11 12 .set noreorder 13 .set noat 14 15 .align 3 16 .ent strrchr 17 .globl strrchr --- 72 unchanged lines hidden --- |