File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ cfg_if! {
123
123
124
124
mod vxworks;
125
125
pub use vxworks:: * ;
126
- } else if #[ cfg( all( unix, any( not( target_os = "switch" ) , target_env = "devkita64 " ) ) ) ] {
126
+ } else if #[ cfg( all( unix, any( not( target_os = "switch" ) , target_env = "libnx " ) ) ) ] {
127
127
mod fixed_width_ints;
128
128
pub use fixed_width_ints:: * ;
129
129
File renamed without changes.
Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ cfg_if! {
327
327
#[ link( name = "root" ) ]
328
328
#[ link( name = "network" ) ]
329
329
extern { }
330
- } else if #[ cfg( target_env = "devkita64 " ) ] {
330
+ } else if #[ cfg( target_env = "libnx " ) ] {
331
331
#[ link( name = "c" ) ]
332
332
#[ link( name = "m" ) ]
333
333
extern { }
@@ -1477,7 +1477,7 @@ extern "C" {
1477
1477
}
1478
1478
1479
1479
cfg_if ! {
1480
- if #[ cfg( not( target_env = "devkita64 " ) ) ] {
1480
+ if #[ cfg( not( target_env = "libnx " ) ) ] {
1481
1481
extern "C" {
1482
1482
pub fn cfgetispeed( termios: * const :: termios) -> :: speed_t;
1483
1483
pub fn cfgetospeed( termios: * const :: termios) -> :: speed_t;
@@ -1552,7 +1552,7 @@ cfg_if! {
1552
1552
if #[ cfg( not( any(
1553
1553
target_os = "solaris" ,
1554
1554
target_os = "illumos" ,
1555
- target_env = "devkita64 "
1555
+ target_env = "libnx "
1556
1556
) ) ) ] {
1557
1557
extern {
1558
1558
pub fn cfmakeraw( termios: * mut :: termios) ;
@@ -1566,9 +1566,9 @@ cfg_if! {
1566
1566
if #[ cfg( target_env = "uclibc" ) ] {
1567
1567
mod uclibc;
1568
1568
pub use self :: uclibc:: * ;
1569
- } else if #[ cfg( target_env = "devkita64 " ) ] {
1570
- mod devkita64 ;
1571
- pub use self :: devkita64 :: * ;
1569
+ } else if #[ cfg( target_env = "libnx " ) ] {
1570
+ mod libnx ;
1571
+ pub use self :: libnx :: * ;
1572
1572
} else if #[ cfg( target_env = "newlib" ) ] {
1573
1573
mod newlib;
1574
1574
pub use self :: newlib:: * ;
You can’t perform that action at this time.
0 commit comments