You have pocrt.lib in 'PellesC.rsp', which will (indirectly) reference pocrt.dll. pocrt.dll is Pelles C multi-threaded C runtime library in a separate DLL. You can also link with crt.lib, which is Pelles C single threaded C runtime static library, or crtmt.lib, which is Pelles C multi-threaded C runtime static library.
The static libraries will put all C runtime code in the executables, so no extra DLL is needed. The DLL version is useful to make the executables smaller, but this means that pocrt.dll must be available when the program is run. If you copy the program to a different computer, pocrt.dll must be copied too... (which can be a pain sometimes...)