N Nelson Hsu Dec 20, 2003 #1 I keep getting an unresolved token error during linking on sprintf. I've included <stdio.h> but the problem is still there.
I keep getting an unresolved token error during linking on sprintf. I've included <stdio.h> but the problem is still there.
S Steve Alpert Dec 21, 2003 #3 Nelson said: I keep getting an unresolved token error during linking on sprintf. I've included <stdio.h> but the problem is still there. Click to expand... you're confused a bit. <stdio.h> only includes prototypes to make the compiler happy. It has nothing to do with linking! Can you be more precise? /steveA
Nelson said: I keep getting an unresolved token error during linking on sprintf. I've included <stdio.h> but the problem is still there. Click to expand... you're confused a bit. <stdio.h> only includes prototypes to make the compiler happy. It has nothing to do with linking! Can you be more precise? /steveA
N Nelson Hsu Dec 23, 2003 #4 Steve Alpert said: you're confused a bit. <stdio.h> only includes prototypes to make the compiler happy. It has nothing to do with linking! Can you be more precise? /steveA Click to expand... Oops, never mind. It turns out that I had to link in msvcrt.lib. The only error now is unresolved token for fcloseall. Strange, I thought that would be in msvcrt.
Steve Alpert said: you're confused a bit. <stdio.h> only includes prototypes to make the compiler happy. It has nothing to do with linking! Can you be more precise? /steveA Click to expand... Oops, never mind. It turns out that I had to link in msvcrt.lib. The only error now is unresolved token for fcloseall. Strange, I thought that would be in msvcrt.