add missing include of ../config.h in regress/*.c

otherwise we get a nice 'no previous prototype' due to
-Wmissing-prototypes.
This commit is contained in:
Omar Polo 2023-06-23 22:40:09 +00:00
parent 5134078414
commit 2d0a2b21f5
4 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "../config.h"
#include <unistd.h>
int

View File

@ -23,6 +23,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "../config.h"
#include <string.h>
#include <stdint.h>

View File

@ -14,6 +14,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "../config.h"
#include <sys/types.h>
#include <unistd.h>

View File

@ -14,6 +14,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "../config.h"
#include <sys/types.h>
#include <errno.h>