This website requires JavaScript.
Explore
Help
Sign In
KolibriOS
/
kolibrios
Watch
12
Star
4
Fork
12
You've already forked kolibrios
Code
Issues
78
Pull Requests
5
Projects
Releases
Activity
ec3af7f664
kolibrios
/
programs
/
develop
/
ktcc
/
trunk
/
libc.obj
/
source
/
time
/
difftime.c
7 lines
97 B
C
Raw
Normal View
History
Unescape
Escape
Added git source kolibri-libc and Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-04-27 18:33:31 +02:00
#
include
<time.h>
libc.obj: - Formatted by clang-format (WebKit-style). - Removed unnecessary errno linux. - Added KOS error codes. - String functions have been replaced with more optimal ones for x86. - Changed wrappers for 70 sysfunction. git-svn-id: svn://kolibrios.org@9765 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-04-15 11:00:55 +02:00
double
difftime
(
time_t
end
,
time_t
beginning
)
Added git source kolibri-libc and Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-04-27 18:33:31 +02:00
{
libc.obj: - Formatted by clang-format (WebKit-style). - Removed unnecessary errno linux. - Added KOS error codes. - String functions have been replaced with more optimal ones for x86. - Changed wrappers for 70 sysfunction. git-svn-id: svn://kolibrios.org@9765 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-04-15 11:00:55 +02:00
return
end
-
beginning
;
}
Reference in New Issue
Copy Permalink