Replace vera++ with clang-format (#4518)

JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik robert.fancsik@h-lab.eu
This commit is contained in:
Robert Fancsik
2021-11-05 14:15:47 +01:00
committed by GitHub
parent bc091e1742
commit badfdf4dba
564 changed files with 10195 additions and 15090 deletions
+4 -3
View File
@@ -40,8 +40,8 @@ int gettimeofday (struct timeval *, void *);
* Useless but stable gettimeofday implementation. Returns Epoch. Ensures that
* test cases relying on "now" yield stable results.
*/
int gettimeofday (struct timeval *tv,
void *tz)
int
gettimeofday (struct timeval *tv, void *tz)
{
(void) tz;
tv->tv_sec = 0;
@@ -56,7 +56,8 @@ int rand (void);
* Useless but stable rand implementation. Returns 4. Ensures that test cases
* relying on randomness yield stable results.
*/
int rand (void)
int
rand (void)
{
return 4; /* Chosen by fair dice roll. Guaranteed to be random. */
} /* rand */