vector.h: missing include <unistd.h> for ssize_t

This commit is contained in:
rofl0r 2020-09-12 15:54:48 +01:00
parent 9e40f8311f
commit df9074db6e

View File

@ -21,6 +21,8 @@
#ifndef _VECTOR_H
#define _VECTOR_H
#include <unistd.h>
/*
* We're using a typedef here to "hide" the implementation details of the
* vector. Sure, it's a pointer, but the struct is hidden in the C file.