Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Cell uCPU platform change only: ARMCC V6 fix for time_t not found. (#…
Browse files Browse the repository at this point in the history
…1130)

On GCC, MSVC and Xtensa toolchains, time.h gets included via one of the "normal" headers, while it does not under ARMCC v6; this is now fixed for the cell uCPU platform.
  • Loading branch information
RobMeades authored Mar 27, 2024
1 parent ad355d1 commit 6662747
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
#ifndef _U_PORT_CLIB_PLATFORM_SPECIFIC_H_
#define _U_PORT_CLIB_PLATFORM_SPECIFIC_H_

/* Only header files representing a direct and unavoidable
* dependency between the API of this module and the API
* of another module should be included here; otherwise
* please keep #includes to your .c files. */

#include "time.h"

/** @file
* @brief Implementations of C library functions not available on this
* platform.
Expand Down

0 comments on commit 6662747

Please sign in to comment.