Include fix: need sys/time.h

This commit is contained in:
Olof hagsand 2022-12-23 15:06:43 +01:00
parent 62b40a9397
commit fb45085491
6 changed files with 6 additions and 0 deletions

View file

@ -82,6 +82,7 @@ Developers may need to change their code
### Corrected Bugs ### Corrected Bugs
* [must statement check int value failed](https://github.com/clicon/clixon/issues/386)
* Fixed: [Defaults in choice does not work properly](https://github.com/clicon/clixon/issues/390) * Fixed: [Defaults in choice does not work properly](https://github.com/clicon/clixon/issues/390)
* Fixed: [Netconf monitoring](https://github.com/clicon/clixon/issues/370) * Fixed: [Netconf monitoring](https://github.com/clicon/clixon/issues/370)
- Announce module capability - Announce module capability

View file

@ -48,6 +48,7 @@
#include <stdint.h> #include <stdint.h>
#include <assert.h> #include <assert.h>
#include <syslog.h> #include <syslog.h>
#include <sys/time.h>
/* cligen */ /* cligen */
#include <cligen/cligen.h> #include <cligen/cligen.h>

View file

@ -45,6 +45,7 @@
#include <limits.h> #include <limits.h>
#include <ctype.h> #include <ctype.h>
#include <unistd.h> #include <unistd.h>
#include <sys/time.h>
/* cligen */ /* cligen */
#include <cligen/cligen.h> #include <cligen/cligen.h>

View file

@ -64,6 +64,7 @@
#include <strings.h> #include <strings.h>
#include <errno.h> #include <errno.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/time.h>
/* cligen */ /* cligen */
#include <cligen/cligen.h> #include <cligen/cligen.h>

View file

@ -73,6 +73,7 @@
#include <strings.h> #include <strings.h>
#include <errno.h> #include <errno.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/time.h>
/* cligen */ /* cligen */
#include <cligen/cligen.h> #include <cligen/cligen.h>

View file

@ -84,6 +84,7 @@
#include <strings.h> #include <strings.h>
#include <errno.h> #include <errno.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/time.h>
/* cligen */ /* cligen */
#include <cligen/cligen.h> #include <cligen/cligen.h>