1 /*
2  * Copyright (c) 1998, 1999 QUALCOMM Incorporated. All rights reserved.
3  * The file license.txt specifies the considtions for use, modification,
4  * and redistribution.
5  */
6 
7 /* Define some things that may be in different .h files on some systems */
8 
9 #ifndef SEEK_SET
10   #define SEEK_SET        0
11   #define SEEK_CUR        1
12   #define SEEK_END        2
13 #endif
14