diff options
| author | Rob Landley <rob@landley.net> | 2012-04-28 01:22:50 -0500 |
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2012-04-28 01:22:50 -0500 |
| commit | e3b171e6df244be8f7d5163ec5818406cce513f0 (patch) | |
| tree | 5e0f48d7e50ece5ecc00184e7e7d32333b9445c2 | |
| parent | f3b4a916525c6658e71def23ee37532b0313b663 (diff) | |
| download | toybox-e3b171e6df244be8f7d5163ec5818406cce513f0.tar.gz | |
Georgi pointed out that some overly-pedantic C libraries require you to include both "string.h" and "strings.h". (Most don't.)
| -rw-r--r-- | toys.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -28,6 +28,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/mount.h> |
