diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-04-10 02:30:48 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-04-10 02:30:48 +0000 |
commit | 7b86839cc8a60a6a9b5be72c93b8d20abcc73130 (patch) | |
tree | 1812e4b5eae66bc20b0c6977710cd761c46d5bc0 /src | |
parent | c258843e010805c15c4af992e09202ba666b61a3 (diff) | |
download | xine-lib-7b86839cc8a60a6a9b5be72c93b8d20abcc73130.tar.gz xine-lib-7b86839cc8a60a6a9b5be72c93b8d20abcc73130.tar.bz2 |
add headers required by select.
may fix bug 697763
CVS patchset: 4583
CVS date: 2003/04/10 02:30:48
Diffstat (limited to 'src')
-rw-r--r-- | src/input/librtsp/rtsp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input/librtsp/rtsp.c b/src/input/librtsp/rtsp.c index 27a85b129..1bdfcef2d 100644 --- a/src/input/librtsp/rtsp.c +++ b/src/input/librtsp/rtsp.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: rtsp.c,v 1.8 2003/03/28 22:44:19 holstsn Exp $ + * $Id: rtsp.c,v 1.9 2003/04/10 02:30:48 miguelfreitas Exp $ * * a minimalistic implementation of rtsp protocol, * *not* RFC 2326 compilant yet. @@ -35,6 +35,8 @@ #include <errno.h> #include <stdlib.h> #include <time.h> +#include <sys/time.h> +#include <sys/types.h> #include "rtsp.h" |