Mercurial > vim
annotate runtime/tools/blink.c @ 31555:5aa54cbc6e20 v9.0.1110
patch 9.0.1110: build fails on Mac OS X 10.4/10.5
Commit: https://github.com/vim/vim/commit/254480736f7db3667c7b84873efb49c2cb1d385f
Author: Evan Miller <emmiller@gmail.com>
Date: Fri Dec 30 10:42:23 2022 +0000
patch 9.0.1110: build fails on Mac OS X 10.4/10.5
Problem: Build fails on Mac OS X 10.4/10.5 .
Solution: Check if the dispatch/dispatch.h header exists. (Evan Miller,
closes #11746)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 30 Dec 2022 11:45:05 +0100 |
parents | 64035abb986b |
children |
rev | line source |
---|---|
7 | 1 /* |
2 * An extremely simple program to make the cursor blink in an xterm. | |
3 * This is useful when the cursor is hard to spot in a highlighted file. | |
4 * Start in the background: "blink&" Stop by killing it. | |
5 * Bram Moolenaar 980109 (based on an idea from John Lange). | |
6 */ | |
7 | |
8 #include <stdio.h> | |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
9 #include <unistd.h> |
7 | 10 |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
11 int |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
12 main(void) |
7 | 13 { |
14 while (1) | |
15 { | |
16 printf("\e[?25h"); | |
17 fflush(stdout); | |
18 usleep(400000); /* on time */ | |
19 printf("\e[?25l"); | |
20 fflush(stdout); | |
21 usleep(250000); /* off time */ | |
22 } | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
23 return 0; |
7 | 24 } |