[Search for users]
[Overall Top Noters]
[List of all Conferences]
[Download this site]
Title: | DECC |
Notice: | General DEC C discussions |
Moderator: | TLE::D_SMITH N TE |
|
Created: | Fri Nov 13 1992 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 2212 |
Total number of notes: | 11045 |
2130.0. "undefined symbol 'strptime'" by LIL09::MALRAS (Jean-Francois MALRAS, SI) Thu Mar 27 1997 13:52
VAX/VMS 6.1
DEC C 5.3
I'm testing 'strptime' and have some trouble while linking :
LIL09:: cc/stand=vaxc test
LIL09:: link test
%LINK-W-NUDFSYMS, 1 undefined symbol:
%LINK-I-UDFSYM, STRPTIME
%LINK-W-USEUNDEF, undefined symbol STRPTIME referenced
in psect $CODE offset %X00000259
The test.c is the DEC C RTL example included in REF-522 for strptime routine.
With /prefix=all, same problem !
Help will be appreciated.
Regard.
JF
T.R | Title | User | Personal Name | Date | Lines |
---|
2130.1 | Added in OpenVMS V6.2 | TLE::D_SMITH | Duane Smith -- DEC C RTL | Thu Mar 27 1997 14:47 | 14 |
| There are several locations which show that strptime() was added in
OpenVMS V6.2
o DEC C Runtime Library Reference Manual
Appendix B -- Version Dependency Tables
o DEC C Runtime Library Intranet Home Page
http://hndymn.zko.dec.com/~crtl
o Header file <time.h>
#if __VMS_VER >= 60200000
char *strptime (...
#endif
|