-1

I use following code in default.vcl

C{#include <time.h>}C  

an error occurred at the start.

Message from C-compiler:  
./vcl.TfBe17Rg.c:429:21: time.h: No such file or directory  
./vcl.TfBe17Rg.c:430:23: string.h: No such file or directory  
Running C-compiler failed, exit 1
user207421
  • 305,947
  • 44
  • 307
  • 483
sealzrt
  • 1
  • 1

1 Answers1

0
C{
#include <sys/time.h>
#include <stdio.h>
}C

Try with the sys/time.h, it should work.

Simply Me
  • 1,579
  • 11
  • 23