Commit 438e9230 authored by Helge Deller's avatar Helge Deller

parisc: ucmpdi2: Fix no previous prototype for '__ucmpdi2' warning

Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent eed869aa
// SPDX-License-Identifier: GPL-2.0
#include <linux/module.h>
#include <linux/libgcc.h>
union ull_union {
unsigned long long ull;
......@@ -9,7 +10,7 @@ union ull_union {
} ui;
};
int __ucmpdi2(unsigned long long a, unsigned long long b)
word_type __ucmpdi2(unsigned long long a, unsigned long long b)
{
union ull_union au = {.ull = a};
union ull_union bu = {.ull = b};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment