fpjohnston / TECO-64

Enhanced and portable version of TECO text editor in C.
24 stars 6 forks source link

mkstemps #2

Closed polluks closed 2 years ago

polluks commented 2 years ago

This function is not POSIX and not part of my SDK.

fpjohnston commented 2 years ago

You are correct. I will modify the code to use mkstemp(), which I hope is included in your SDK.

Franklin

On Sun, Jan 9, 2022 at 7:03 PM Stefan @.***> wrote:

This function is not POSIX and not part of my SDK.

— Reply to this email directly, view it on GitHub https://github.com/fpjohnston/TECO-64/issues/2, or unsubscribe https://github.com/notifications/unsubscribe-auth/AK73X7CVNDBX3HKPWESZPLLUVIO53ANCNFSM5LSOCI4A . You are receiving this because you are subscribed to this thread.Message ID: @.***>

fpjohnston commented 2 years ago

Okay, I've fixed this also. I had to use a bit more code to accomplish what I originally did with mkstemps(), but I think it was worth it, as I agree that I should stick with ANSI/POSIX functions when possible.

New code will be uploaded later today.

On Wed, Feb 9, 2022 at 12:37 PM Franklin Johnston @.***> wrote:

You are correct. I will modify the code to use mkstemp(), which I hope is included in your SDK.

Franklin

On Sun, Jan 9, 2022 at 7:03 PM Stefan @.***> wrote:

This function is not POSIX and not part of my SDK.

— Reply to this email directly, view it on GitHub https://github.com/fpjohnston/TECO-64/issues/2, or unsubscribe https://github.com/notifications/unsubscribe-auth/AK73X7CVNDBX3HKPWESZPLLUVIO53ANCNFSM5LSOCI4A . You are receiving this because you are subscribed to this thread.Message ID: @.***>

polluks commented 2 years ago

thx