Skip to content

Commit

Permalink
alpha/boot: fix the breakage from -isystem series...
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
Signed-off-by: Matt Turner <[email protected]>
  • Loading branch information
Al Viro authored and mattst88 committed Feb 25, 2023
1 parent d3c51b7 commit 56efd34
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/alpha/boot/bootp.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <asm/hwrpb.h>
#include <asm/io.h>

#include <stdarg.h>
#include <linux/stdarg.h>

#include "ksize.h"

Expand Down
2 changes: 1 addition & 1 deletion arch/alpha/boot/bootpz.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <asm/hwrpb.h>
#include <asm/io.h>

#include <stdarg.h>
#include <linux/stdarg.h>

#include "kzsize.h"

Expand Down
2 changes: 1 addition & 1 deletion arch/alpha/boot/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <asm/console.h>
#include <asm/hwrpb.h>

#include <stdarg.h>
#include <linux/stdarg.h>

#include "ksize.h"

Expand Down
4 changes: 2 additions & 2 deletions arch/alpha/boot/stdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/*
* Copyright (C) Paul Mackerras 1997.
*/
#include <stdarg.h>
#include <stddef.h>
#include <linux/string.h>
#include <linux/stdarg.h>

size_t strnlen(const char * s, size_t count)
{
Expand Down

0 comments on commit 56efd34

Please sign in to comment.