i would like to reinstall libstdc++ because i had a problem with compiling when i included alogrithm it said rand() is not a member of std:: when i wasn't even using the function but it was defined so i changed it to use another function based on the random function right below it. i believe this error was on line 4538.
that being said how can i reinstall libstdc++ so that i can see if it will correct itself after reinstallation
ps: this was in c++/4.3.3/bits.../stl_algo.h
How to reinstall libstdc++
Are you sure you included
and NOT
Code: Select all
#include <cstdlib>
Code: Select all
#include <stdlib.h>
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}