Message-ID: From: "apgrucza (@apgrucza)" To: "postgresql-interfaces/psqlodbc" Date: Mon, 13 May 2024 12:27:21 +0000 Subject: [postgresql-interfaces/psqlodbc] PR #17: Use strdup on non-Windows systems List-Id: X-GitHub-Author-Id: 46910040 X-GitHub-Author-Login: apgrucza X-GitHub-Issue: 17 X-GitHub-Repo: postgresql-interfaces/psqlodbc X-GitHub-State: merged X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/postgresql-interfaces/psqlodbc/pull/17 Content-Type: text/plain; charset=utf-8 Prior to #6, psqlODBC only used `_strdup` on Windows builds. Although `_strdup` is part of ISO C and C++, it does not compile on all systems. Fixes #15.