mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-18 03:25:55 +00:00
freebsd: fix attribute ordering
This commit is contained in:
parent
cf2712ec6d
commit
f1453d106e
@ -631,8 +631,7 @@ ncplane_printf(struct ncplane* n, const char* format, ...){
|
||||
}
|
||||
|
||||
static inline int
|
||||
ncplane_printf_aligned(struct ncplane* n, int y, ncalign_e align,
|
||||
const char* format, ...)
|
||||
ncplane_printf_yx(struct ncplane* n, int y, int x, const char* format, ...)
|
||||
__attribute__ ((format (printf, 4, 5)));
|
||||
|
||||
static inline int
|
||||
@ -645,7 +644,8 @@ ncplane_printf_yx(struct ncplane* n, int y, int x, const char* format, ...){
|
||||
}
|
||||
|
||||
static inline int
|
||||
ncplane_printf_yx(struct ncplane* n, int y, int x, const char* format, ...)
|
||||
ncplane_printf_aligned(struct ncplane* n, int y, ncalign_e align,
|
||||
const char* format, ...)
|
||||
__attribute__ ((format (printf, 4, 5)));
|
||||
|
||||
static inline int
|
||||
|
Loading…
Reference in New Issue
Block a user