diff options
| author | Po Lu | 2024-05-19 09:38:50 +0800 |
|---|---|---|
| committer | Po Lu | 2024-05-19 09:38:50 +0800 |
| commit | cf80d9831c62a8d0bfa98aec912862e7412a99c4 (patch) | |
| tree | 2612df2dc9b2e49d2f24311d1661895a2d18a691 /src | |
| parent | 3c2c6ab733623433150b3bc82598c4bf2563ec87 (diff) | |
| download | emacs-cf80d9831c62a8d0bfa98aec912862e7412a99c4.tar.gz emacs-cf80d9831c62a8d0bfa98aec912862e7412a99c4.zip | |
Fix Android 2.2 build
* src/android.h: Include sys/select.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/android.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/android.h b/src/android.h index 78482d64de4..29459b063f3 100644 --- a/src/android.h +++ b/src/android.h | |||
| @@ -31,6 +31,8 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 31 | #include <pwd.h> | 31 | #include <pwd.h> |
| 32 | 32 | ||
| 33 | #include <sys/stat.h> | 33 | #include <sys/stat.h> |
| 34 | #include <sys/select.h> | ||
| 35 | |||
| 34 | #include <dirent.h> | 36 | #include <dirent.h> |
| 35 | #include <stdio.h> | 37 | #include <stdio.h> |
| 36 | 38 | ||