hth313 / Calypsi-tool-chains

Overview of the Calypsi tool chain and open source support packages
17 stars 0 forks source link

Missing include/sys directory #44

Closed djipi closed 2 months ago

djipi commented 2 months ago

In previous version, such as the 4.4, the directory was present (at least for the 68K). It will be good to bring it back because projects may point on sys/time.h (or stat.h, types.h).

hth313 commented 2 months ago

They were intentionally removed as they are not standard C. I base the C library on the NuttX project which is a mix of C and POSIX, neither is complete. Rather than trying to keep it in that spirit, I opted to change it towards being a standard C compliant library, thereby removing the POSIX parts, including the headers mentioned.

djipi commented 2 months ago

Thank you for the feedbacks.