diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2006-01-08 22:37:15 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2006-01-08 22:37:15 +0000 |
commit | 2150c0f09b8aff06c126b0f0a236d40962953514 (patch) | |
tree | 520b059c6b5681e596c220f005d9bd7da5719701 | |
parent | 2367a62e4c64e727d4487cd1a19ec8047d3871f4 (diff) | |
download | zsh-2150c0f09b8aff06c126b0f0a236d40962953514.tar.gz zsh-2150c0f09b8aff06c126b0f0a236d40962953514.tar.xz zsh-2150c0f09b8aff06c126b0f0a236d40962953514.zip |
Got rid of wcswidth() define for OpenBSD now that wcswidth() isn't
used.
-rw-r--r-- | Src/system.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Src/system.h b/Src/system.h index ccb12e0c0..33804e71a 100644 --- a/Src/system.h +++ b/Src/system.h @@ -703,10 +703,6 @@ extern short ospeed; */ # include <wchar.h> # include <wctype.h> -#ifndef HAVE_WCSWIDTH -/* wcswidth is missing on OpenBSD: assume single-width characters */ -#define wcswidth(x, y) (1) -#endif #endif #ifdef HAVE_LANGINFO_H # include <langinfo.h> |