summaryrefslogtreecommitdiff
path: root/lib/libcurses/base/keybound.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcurses/base/keybound.c')
-rw-r--r--lib/libcurses/base/keybound.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libcurses/base/keybound.c b/lib/libcurses/base/keybound.c
index c1c8506a4a5..adee55cd0e4 100644
--- a/lib/libcurses/base/keybound.c
+++ b/lib/libcurses/base/keybound.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: keybound.c,v 1.1 1999/02/24 06:31:07 millert Exp $ */
+/* $OpenBSD: keybound.c,v 1.2 2001/01/22 18:01:36 millert Exp $ */
/****************************************************************************
- * Copyright (c) 1999 Free Software Foundation, Inc. *
+ * Copyright (c) 1999,2000 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the *
@@ -34,14 +34,15 @@
#include <curses.priv.h>
-MODULE_ID("$From: keybound.c,v 1.1 1999/02/19 11:55:56 tom Exp $")
+MODULE_ID("$From: keybound.c,v 1.3 2000/12/10 02:43:26 tom Exp $")
/*
* Returns the count'th string definition which is associated with the
* given keycode. The result is malloc'd, must be freed by the caller.
*/
-char *keybound(int code, int count)
+NCURSES_EXPORT(char *)
+keybound(int code, int count)
{
- return _nc_expand_try(SP->_key_ok, code, &count, 0);
+ return _nc_expand_try(SP->_key_ok, code, &count, 0);
}