mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-27 18:18:11 +08:00
Remove stray white spaces.
This commit is contained in:
@@ -301,6 +301,3 @@
|
||||
#define MC68681_BAUD_RATE_MASK_TIMER_1X 0xff
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -53,4 +53,3 @@ clock_t times(
|
||||
#endif
|
||||
#endif
|
||||
/* end of include file */
|
||||
|
||||
|
||||
@@ -105,4 +105,3 @@ struct z8036_map {
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -15,4 +15,3 @@ pid_t __getpid(void)
|
||||
{
|
||||
return getpid();
|
||||
}
|
||||
|
||||
|
||||
@@ -46,4 +46,3 @@ int access(
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -37,5 +37,3 @@ rtems_assoc_name_bad(
|
||||
#endif
|
||||
return bad_buffer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -121,4 +121,3 @@ int rtems_filesystem_evaluate_parent(
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@@ -46,4 +46,3 @@ int fchmod(
|
||||
|
||||
return (*iop->pathinfo.handlers->fchmod_h)( &iop->pathinfo, mode );
|
||||
}
|
||||
|
||||
|
||||
@@ -186,4 +186,3 @@ int _fcntl_r(
|
||||
return fcntl( fd, cmd, arg );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
@@ -55,4 +55,3 @@ int ftruncate(
|
||||
|
||||
return (*iop->handlers->ftruncate_h)( iop, length );
|
||||
}
|
||||
|
||||
|
||||
@@ -30,4 +30,3 @@ gid_t getegid( void )
|
||||
{
|
||||
return _POSIX_types_Egid;
|
||||
}
|
||||
|
||||
|
||||
@@ -27,4 +27,3 @@ int getgroups(
|
||||
{
|
||||
return 0; /* no supplemental group ids */
|
||||
}
|
||||
|
||||
|
||||
@@ -42,4 +42,3 @@ pid_t _getpid_r(
|
||||
return getpid();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
@@ -26,4 +26,3 @@ pid_t getppid( void )
|
||||
{
|
||||
return _POSIX_types_Ppid;
|
||||
}
|
||||
|
||||
|
||||
@@ -215,4 +215,3 @@ int rtems_gxx_mutex_unlock (__gthread_mutex_t *mutex)
|
||||
#endif
|
||||
return (rtems_semaphore_release( (rtems_id)*mutex ) == RTEMS_SUCCESSFUL) ? 0 :-1;
|
||||
}
|
||||
|
||||
|
||||
@@ -57,4 +57,4 @@ int ioctl(
|
||||
rc = (*iop->handlers->ioctl_h)( iop, command, buffer );
|
||||
|
||||
return rc;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -331,5 +331,3 @@ int rtems_libio_is_file_open(
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -102,4 +102,3 @@ int _link_r(
|
||||
return link( existing, new );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
@@ -99,4 +99,3 @@ off_t _lseek_r(
|
||||
return lseek( fd, offset, whence );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
@@ -28,4 +28,3 @@ int mkdir(
|
||||
{
|
||||
return mknod( pathname, mode | S_IFDIR, 0LL);
|
||||
}
|
||||
|
||||
|
||||
@@ -85,4 +85,3 @@ unsigned int sleep(
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
@@ -155,4 +155,3 @@ printk(char *fmt, ...)
|
||||
vprintk(fmt, ap);
|
||||
va_end(ap); /* clean up when done */
|
||||
} /* printk */
|
||||
|
||||
|
||||
@@ -24,5 +24,3 @@ pid_t setsid( void )
|
||||
{
|
||||
rtems_set_errno_and_return_minus_one( EPERM );
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -44,4 +44,3 @@ int symlink(
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@@ -34,4 +34,3 @@ void rtems_termios_reserve_resources (
|
||||
rtems_config->maximum_semaphores += (4 * number_of_devices);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@@ -41,4 +41,3 @@ int truncate(
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
@@ -75,4 +75,3 @@ char *ttyname(
|
||||
return buf;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
@@ -116,4 +116,3 @@ char *ttyname(
|
||||
return buf;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
@@ -81,4 +81,3 @@ int _unlink_r(
|
||||
return unlink( path );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
@@ -217,5 +217,3 @@ int unmount(
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user